Strict Standards: Only variables should be passed by reference in..

≡放荡痞女 提交于 2019-12-11 20:15:26

问题


I am receiving an error when I attempt to upload an image. The image is always uploaded, but after every upload I receive this error:

Strict Standards: Only variables should be passed by reference in /filemanager/afmlib.php on line 57

Line 57 in my filemanager is:

 function AFM_fileExt($filename)
 {
  return strtolower(end(explode('.', $filename)));////THIS IS LINE: 57
 }

How can I fix this?


回答1:


Why not let PHP do the work:

function AFM_fileExt($filename) {
    return strtolower(pathinfo($filename, PATHINFO_EXTENSION));
}

For the sake of completeness, this answer gives a good explanation of how the error arises. It's because end(array &$array) uses a reference - note the ampersand in the declaration.




回答2:


BTW your codes works for me.

And i dont know about it works but try this one

function AFM_fileExt($filename)
{
    $arr = explode('.', $filename);
    return strtolower(end($arr));
}


来源:https://stackoverflow.com/questions/18788744/strict-standards-only-variables-should-be-passed-by-reference-in

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!