How to solve the error when tp5 uses php7.2.15
TP5 is a high-performance development framework based on PHP, which is widely used in various web development projects. However, after the latest version was released, some users encountered a problem, that is, an error occurred during the process of supporting PHP7.2.15 on TP5. This article will delve into the causes of this problem and provide solutions.
1. Background of the problem
When using the TP5 framework, many users have upgraded the PHP version. Among them, PHP 7.2.15 version is considered to be a very stable version and can provide better performance and security. However, when some users tried to use PHP 7.2.15 version on TP5, they encountered errors.
The specific error message is as follows:
PHP Fatal error: Cannot use isset() on the result of a function call (you can use "null !== func()" instead) in /path/to/tp5/framework/library/think/db/BaseQuery.php on line xxx
2. Cause of the problem
According to the above error message, it can be found that the problem lies in the code of the TP5 framework middle. Specifically, an error occurred in BaseQuery.php, the database query statement constructor of TP5. It can be seen from the error message that the isset() function is used in the BaseQuery.php file, and this may trigger some new features of the PHP 7.2.15 version and cause the error to occur.
Specifically, PHP version 7.2.15 introduces a new feature that does not allow the isset() function to be used directly on the return value of the function. This feature is implemented to avoid some potential security issues and syntax errors. In TP5, this situation of using isset() on the return value occurred, which caused the program to crash.
3. Solution
In view of the above problems, the following solutions can be adopted to solve this problem:
- Upgrade TP5 version
According to the information provided by the TP5 official forum, if the above problems occur during Upgrade, it is recommended to upgrade from 5.0.10 to the latest version. The latest version of TP5 has fixed this problem and can support the use of PHP 7.2.15.
- Manually modify the code
In addition, you can also manually modify the code to solve this problem. The specific modification method is as follows:
Enter the file: tp5/framework/library/think/db/BaseQuery.php
Find the following code:
if(is_null($value)) { $condition .= $field . ' IS NULL '; // null值处理 } elseif(is_array($value)) { if(is_string($key)) { $condition .= $field . ' ' . $key . ' (' . implode(',', $this->parseValue($value)) . ')'; } else { $condition .= $this->buildWhere($value, $field, $type, $logic, $condition); } } elseif(is_string($key)) { $condition .= $field . ' ' . $key . ' ' . $this->parseValue($value); } else { $condition .= $field . ' = ' . $this->parseValue($value); }
Modify to:
if(is_null($value)) { $condition .= $field . ' IS NULL '; } elseif(is_array($value)) { if(is_string($key)) { if (empty($value)) { $condition .= '1=0'; } else { $condition .= $field . ' ' . $key . ' (' . implode(',', $this->parseValue($value)) . ')'; } } else { $condition .= $this->buildWhere($value, $field, $type, $logic, $condition); } } elseif(is_string($key)) { if ($value === '' || is_array($value)) { $condition .= '1=0'; } else { $condition .= $field . ' ' . $key . ' ' . $this->parseValue($value); } } else { $condition .= $field . ' = ' . $this->parseValue($value); }
Note that if you choose to modify the code manually, you need to test the modified code to ensure its correctness. Also, to avoid future problems, it's a good idea to keep your TP5 framework version up to date.
4. Summary
Through the analysis of this article, we can see that the error report supporting PHP7.2.15 does not come from PHP itself, but appears in the TP5 framework code. In development based on TP5, if you encounter such a problem, you only need to adopt the above solutions. At the same time, we also need to be aware that when using a new version of PHP, the compatibility with the TP5 framework also needs to be tested and debugged accordingly to ensure the stability and reliability of the entire system.
The above is the detailed content of How to solve the error when tp5 uses php7.2.15. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
