function report_test() {
$color = "blue";
$name = "John";
mobile_test($color, $name);
echo $columnid;
}
function mobile_test($color, $name) {
-snipped Insert MySQL Query-
$columnid = 5;
return $columnid;
}
希望上面的例子描述了我正在尝试做的事情。由于其他各种原因,全局化变量columnid在这种情况下不是一种选择。我也不想改变 mobile_test($color, $name)
功能。我发现,如果我回显函数,mysql insert查询将运行两次,这意味着两组相同的结果被输入到数据库中。
还有别的办法吗?
2条答案
按热度按时间yuvru6vn1#
您可以这样做:
您需要存储
mobile_test()
作为一个新变量。这不需要改变mobile_test()
h4cxqtbf2#
我想你是想
echo
出去return
价值来自mobile_test()
内部report_test()
. 最简单的方法就是echo
出去$columnid
伊尼斯德mobile_test()
. 当你打电话的时候mobile_test()
从report_test()
,的echo
语句,并输出值:还可以使用php的短标记语法(如
<?= mobile_test(); ?>
),假设要回显return
直接使用函数,而不使用它做任何其他事情。请注意,如果您在
return
价值(return $columnid;
),您可以直接将此值用作report_test()
功能: