Argument¶
Arguments are values passed to a function or method, at execution time. They may be a variable or an expression.
<?php
function foo($parameter) {}
$argument = 1;
foo($argument + 2);
?>
Related : Parameter
The definitive reference with all things PHP, and their definitions.
Contents: