最近给别人支配一个 ThinkPHP3.1 的系统,由于做事器的环境是 php7.1,以是碰着了两个非常恶心的问题。
(真的无奈现在还存在TP3.1的系统)

一、系统页面访问空缺不报错

系统访问之后页面显示空缺,但是没有任何的缺点提示。

phpreplacecallbackPHP7安排TP31体系碰到的问题 Python

最开始我的第一反应便是模板解析的问题,但是却不知道如何办理,于是网上找了一下办理方案,创造的确存在这个问题。

关键点:preg_replace函数在 PHP7 是彻底废除了,而 PHP5+ 却还能用

存在这个函数的地方紧张是三个文件,分别是:

Think\Lib\Template\ThinkTemplate.class.phpThinkPHP\Lib\Core\Dispatcher.class.php

因此须要将这个函数利用 preg_replace_callback 更换掉。

ThinkPHP 论坛有人提出过办理方案,但是他的办理办法存在问题,会报缺点,因此我保存了两个没问题的代码:

1、ThinkTemplate.class.php

代码地址:

https://gitee.com/postbird/codes/7h62mzisqg4t1p5axfkbn44

2、Dispatcher.class.php

代码地址:

https://gitee.com/postbird/codes/3yb4n0sthxc8ipaj9eqor70

用上面的代码把项目文件覆盖掉即可。

二、验证码 Cannot use ‘String’ as class name as it is reserved

在利用验证码的时候,报错如下:

Cannot use ‘String’ as class name as it is reserved

由于 PHP7 把 String 定位关键字,因此报错。

有人给出理解决方案,原文地址:

https://www.phpsong.com/2260.html

总结如下:

1、在 ThinkPHP\Library\Org\Util\ 创建新文件:Stringnew.class.php

该文件内容和同目录下 String.class.php 内容是一样的,只不过将 class String 改为 class Stringnew 而已,如果不想自己改,我也上传了一份改好的代码:

https://gitee.com/postbird/codes/3fswbey27qcdphx9rivt079

2、修正 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);