return strtolower(end(explode(".",$filename))); 这种方式获得文件扩展名,有的时候 不好用, 不好用时就按教程走老是提示 Strict Standards: Only variables should be passed by reference in C:\AppServ\www\shopImooc\lib\string.func.php on line 37 时 可以获得文件扩展名的方式 改为 return substr($filena return s
return strtolower(end(explode(".",$filename))); 这种方式获得文件扩展名,有的时候 不好用, 不好用时就按教程走老是提示 Strict Standards: Only variables should be passed by reference in C:\AppServ\www\shopImooc\lib\string.func.php on line 37 时 可以获得文件扩展名的方式 改为 return substr($filena
return strtolower(end(explode(".",$filename))); 这种方式获得文件扩展名,有的时候 不好用, 不好用时就按教程走老是提示
Strict Standards: Only variables should be passed by reference in C:\AppServ\www\shopImooc\lib\string.func.php on line 37
时 可以获得文件扩展名的方式 改为 return substr($filename, strrpos($filename, '.') + 1);