fetch()){}"; 2. Organize the data into an array Then process, and can obtain, process, and delete in the loop."/> fetch()){}"; 2. Organize the data into an array Then process, and can obtain, process, and delete in the loop.">

Home  >  Article  >  Backend Development  >  How to solve php array error problem

How to solve php array error problem

藏色散人
藏色散人Original
2020-07-31 10:12:292671browse

Solution to php array error: 1. Fetch data one by one when processing data, with statements such as "while($data = $pdo->fetch()){}"; 2. The data is organized into an array for processing, and can be obtained, processed, and deleted in a loop.

How to solve php array error problem

Recommended: "PHP Video Tutorial"

The problem of error reporting when the amount of data in the php array is too large

When doing an excel export, an error will be reported when the amount of data exceeds 2,000 pieces. At first I thought the server or database had crashed. However, when an error is reported, the page responds very quickly, and it does not seem like a server performance problem. Later, after repeated testing, it was found that functions such as fetchAll in pdo were used when processing data to load all the data into an array at once, causing problems similar to memory overflow.

Solution:

When processing the data, you can take the data one by one, such as:

while($data = $pdo->fetch()){
......
}

If you must organize the data into an array and then process it, you can Acquire, process, and delete in a loop, such as:

while($data = $pdo->fetch()){
......
$arr[data['name']][] = $data;
.........
unset($arr);
}

The above is the detailed content of How to solve php array error problem. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:How to implement php rsaNext article:How to implement php rsa