当遇到上传失败报错 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;
时,可以通过修改代码来解决该问题。
解决方案
- 定位问题代码
- 修改代码
- 验证结果
详细步骤
1. 定位问题代码
- 打开文件:
- 打开
/core/function/file.php
文件。 - 查找以下代码行:
if (stripos($types, $ext) !== false)
- 打开
2. 修改代码
- 替换代码:
- 将上述代码替换为:
if (stripos($types, chr($ext)) !== false)
- 将上述代码替换为: