国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

function parameters

PHP functions can have no parameters or several parameters. Multiple parameters are called parameter lists, separated by commas. The parameters are similar to a variable and are used to pass data to the function body when called. By passing parameters, the function can perform operations on the parameters and obtain the results we want.

The variable name of the parameter can be freely specified, but it is best to express the relevant meaning. The commonly used method of setting parameters is:

<?php
function sum($a, $b) { 
   return $a+$b; 
}
?>


Continuing Learning
||
<?php function sum($a, $b) { return $a-$b; } ?>
submitReset Code