PHP函数内无法访问外部变量,已用global声明;

如图……
2024-12-23 09:54:03
推荐回答(1个)
回答1:

test 方法中写成

function test(){
global $uploadPath;
echo $uploadPath; //输出 upload
}