Merge pull request #3233 from rahiel/patch-1

[php/en]: typo
This commit is contained in:
Divay Prakash 2018-10-01 21:47:30 +05:30 committed by GitHub
commit 045e48d615
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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) {