gpt4 book ai didi

php - fatal error : Cannot re-assign auto-global variable

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:55:05 27 4
gpt4 key购买 nike

Fatal error: Cannot re-assign auto-global variable _FILES in C:\xampp\htdocs\user\utils\CommonUtils.php on line 1395

1395行的代码是

public static function saveAvatar($code, $pilotid, $_FILES) {

最佳答案

你不能使用 $_FILES 作为函数参数,它是保留字,用这个代替

public static function saveAvatar($code, $pilotid, $files) { }

为了调用传递 $_FILES 这样

saveAvatar($code, $pilotid, $_FILES);

您也可以直接访问 $_FILES 而无需将其传递到函数内的函数参数中。

关于php - fatal error : Cannot re-assign auto-global variable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14954446/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com