主页
PHP
PHP 函数
tryphp_function_default_arg
运行 ❯
×
更改方向
保存代码
更改主题
<?php function setHeight($minheight = 50) { echo "The height is : $minheight
"; } setHeight(350); setHeight(); setHeight(135); setHeight(80); ?>
The height is : 350
The height is : 50
The height is : 135
The height is : 80