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

?>

Documentation

Related : Parameter