Argument¶
Arguments are values passed to a function or method, at execution time. The argument is the execution time value, and the recipient of that value is the parameter, which is located in the signature of the method. They may be a variable or an expression.
<?php
function foo($parameter) {}
$argument = 1;
foo($argument + 2);
?>
See also What’s the difference between an argument and a parameter?.
Related : Parameter, Comma, Parenthesis