您的位置:首页 > Web前端

Strict Standards: Only variables should be passed by reference 只允许传递变量

2016-10-26 02:54 204 查看
$ext=strtolower(end(explode(".",$val)));


改为:

$myarr=explode(".",$val);
$end=end($myarr);
$ext=strtolower($end);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  php
相关文章推荐