首页 > 代码库 > 函数参数赋值的例子

函数参数赋值的例子

代码:

<HTML>
<HEAD><meta http-equiv="Content-Type" content="text/html;charset=gb2312"/>
</HEAD>
<BODY>
<?php
function totalmoney($jiage,$number)

{
$totallcost = $jiage*$number;

echo "您购买的价格为:$jiage"."元。" ,"数量为:$number"."本。<br/>";
echo "总共花费了:$totallcost"."元.";

}

totalmoney(20,3);

?>
</BODY>
</HTML>

结果:

技术分享

 

函数参数赋值的例子