当前位置:Gxlcms > PHP教程 > 当我运行下面的脚本,它会输出错误信息,我该怎么_PHP教程

当我运行下面的脚本,它会输出错误信息,我该怎么_PHP教程

时间:2021-07-01 10:21:17 帮助过:3人阅读

function myfunc($argument) {
echo $argument + 10;
}
$variable = 10;
echo "myfunc($variable) = " . myfunc($variable);
到底是什么原因呢?
要将自定义函数的结果传回,你需要使用return来将结果传回,而不是echo函数。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/632413.htmlTechArticlefunction myfunc($argument) { echo $argument + 10; } $variable = 10; echo "myfunc($variable) = " . myfunc($variable); 到底是什么原因呢? 要将自定义函数的结果传回,...

人气教程排行