thinkphp在php7环境下提示Cannot use ‘String’ as class name as it is reserved的解决方法
程序员文章站
2024-04-02 13:26:04
本文实例讲述了thinkphp在php7环境下提示cannot use ‘string' as class name as it is reserved的解决方法。分享给大...
本文实例讲述了thinkphp在php7环境下提示cannot use ‘string' as class name as it is reserved的解决方法。分享给大家供大家参考,具体如下:
我有一网站之前用php7运行thinkphp没有什么问题,但是最近发现开启验证码的时候发现有错误
cannot use 'string' as class name as it is reserved
在google baidu搜索了一下还是没有解决方法
于是自己动手解决,看来我是第一个分享出来的人
原因:
有一个类用了string类名,php7把string定为关键字
解决方法:
文件thinkphp\library\org\util\image.class.php
找到:
import('org.util.string'); $code = string::rand_string($length, 4);
修改成:
import('org.util.stringnew'); $code = stringnew::rand_string($length, 4);
复制文件:
thinkphp\library\org\util\string.class.php
保存成:
thinkphp\library\org\util\stringnew.class.php
打开stringnew.class.php:
class string {
修改成:
class stringnew {
放上去验证码出来了,我搜索了一下没有其他地方引用,这个问题解决了
更多关于thinkphp相关内容感兴趣的读者可查看本站专题:《thinkphp入门教程》、《thinkphp模板操作技巧总结》、《thinkphp常用方法总结》、《smarty模板入门基础教程》及《php模板技术总结》。
希望本文所述对大家基于thinkphp框架的php程序设计有所帮助。
推荐阅读