Strict standards: Only variables should be passed by reference in E:\wamp\www\fileManager\index.php on line 324
Strict standards: Only variables should be passed by reference in E:\XAMPP\wamp\www\fileManager\index.php on line?324
324行代碼:
$ext=strtolower(end(explode(".",$val)));
$imageExt=array("gif","jpg","jpeg","png");
2015-01-30
嗯 這是因為PHP5.4以后加入了嚴格校驗,只有變量可以當作引用被傳遞
^-^...