summaryrefslogtreecommitdiffhomepage
path: root/php.html.markdown
diff options
context:
space:
mode:
authorRahiel Kasim <rahielkasim@gmail.com>2018-10-01 09:53:22 +0200
committerGitHub <noreply@github.com>2018-10-01 09:53:22 +0200
commit9f337dd02823f845ca913beb44464f269340c7dd (patch)
treecd1c3b5013eb20e1fc475e9110096ee9cd817b6d /php.html.markdown
parent5495c1f5970ce1ff052cf8473d03e201b43bade6 (diff)
[php/en]: typo
Diffstat (limited to 'php.html.markdown')
-rw-r--r--php.html.markdown2
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) {