怎么在php函数里取得函数外的变量值

2024-12-23 07:46:30
推荐回答(1个)
回答1:

$var=123;
function foo()
{
global $var;

print($var);

}
foo();