Strict Standards: Only variables should be passed by reference in C:\AppServ\www\shopImooc\lib\string.func.php on line 37 文件上傳成功 為什么會老是提示這個
Strict Standards: Only variables should be passed by reference in?C:\AppServ\www\shopImooc\lib\string.func.php?on line?37
文件上傳成功 ?為什么會老是提示這個
2016-01-09
這是end函數造成的,正確代碼改成如下:function getExt($filename){
? ?$tmp=explode(".",$filename);
? ?return strtolower(end($tmp));
},也就是說把間接改成直接就不會提示了。