在error.log日志文件里面出现的错误提示,虽然不影响正常运行,但是最好去掉 3. ERROR Global - Fatal error caught: #8192: Array and string offset access syntax with curly braces is deprecated in /pixmicat-develop/lib/lib_common.php on line 165 这是因为php7之后不再支持使用大括号访问数组以及字符串的偏移 $chars = ord($str{$i}); 改为 $chars = ord($str[$i]);