Posted in PHP onDecember 04, 2013
本节内容:
php函数指定默认值
在php编程中,为自定义函数设定默认值,当用户调用该函数时,如果不给参数指定值,参数会用默认值顶替。
例1,
<html> <head> <title>php函数指定默认值-3water.com</title> </head> <body> <?php function printMe($param = NULL) { print $param; } printMe("This is test"); printMe(); ?> </body> </html>
输出结果:
This is test
例2,php函数参数默认值的使用范例,php函数参数中设置和使用默认值。
代码:
<html> <head> <title>php函数参数默认值 - 3water.com</title> </head> <body> <?php function textonweb ($content, $fontsize=3){ echo "<font SIZE=$fontsize>$content</font>"; } textonweb ("A <br />", 7); textonweb ("AA.<br />"); textonweb ("AAA. <br />"); textonweb ("AAAA! <br />"); ?> </body> </html>
php函数指定默认值方法的小例子
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@