1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-11 17:24:29 +02:00

[php/en]: typo

This commit is contained in:
Rahiel Kasim
2018-10-01 09:53:22 +02:00
committed by GitHub
parent 5495c1f597
commit 9f337dd028

View File

@@ -443,7 +443,7 @@ echo $function_name(1, 2); // => 3
// Or, use call_user_func(callable $callback [, $parameter [, ... ]]); // Or, use call_user_func(callable $callback [, $parameter [, ... ]]);
// You can get the all the parameters passed to a function // You can get all the parameters passed to a function
function parameters() { function parameters() {
$numargs = func_num_args(); $numargs = func_num_args();
if ($numargs > 0) { if ($numargs > 0) {