UNKNOW: Code: 8192; Desc: stripos(): Non-string needles will be interpreted as strings in the future. Use an explicit chr() call to preserve the current behavior; File: /www/wwwroot/aaa.xxxx.com/core/function/file.php; Line: 176;
解决办法:
if(stripos($types,$ext)!==false)
替换成
if(stripos($types,chr($ext))!==false)
版权声明: 本站资源均来自互联网或会员发布,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!
转载请注明: pbootcms上传附件失败报错UNKNOW: Code: 8192; Desc: stripos():解决方法