diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2018-10-01 21:47:30 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-01 21:47:30 +0530 |
commit | 045e48d615226fb92db50d2afe392909613324a6 (patch) | |
tree | cd1c3b5013eb20e1fc475e9110096ee9cd817b6d /php.html.markdown | |
parent | 5495c1f5970ce1ff052cf8473d03e201b43bade6 (diff) | |
parent | 9f337dd02823f845ca913beb44464f269340c7dd (diff) |
Merge pull request #3233 from rahiel/patch-1
[php/en]: typo
Diffstat (limited to 'php.html.markdown')
-rw-r--r-- | php.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/php.html.markdown b/php.html.markdown index d4fbaa32..6542035f 100644 --- a/php.html.markdown +++ b/php.html.markdown @@ -443,7 +443,7 @@ echo $function_name(1, 2); // => 3 // 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() { $numargs = func_num_args(); if ($numargs > 0) { |