Home Backend Development PHP Tutorial php数组的限制于memory_limit的关系解决方法

php数组的限制于memory_limit的关系解决方法

Jun 13, 2016 am 11:14 AM
limit memory nbsp php usage

php数组的限制于memory_limit的关系
    前几天在服务器上处理一个大文件时,遇到了一个问题

<br />PHP Fatal error:  Allowed memory size of 16777216 bytes exhausted (tried to allocate 10255856 bytes) in /usr/local/asg/www/scripts/sync.php on line 641<br />
Copy after login



在网上看了下,说是跟php.ini里设置的memory_limit有关,因为那个脚本中有个函数,是把文件的每行经过处理后放入一个数组的,那个文件有46419行,我想可能是超过了限制吧,于是我在windos系统做了下测试

<br />$arr = array();<br />for($i=0;$i=1590000;$i++) {<br />    $arr[] = $i;<br />}<br /><br />echo count($arr);<br />
Copy after login



php.ini中的memory_limit设置为
<br />; Maximum amount of memory a script may consume (128MB)<br />; http://php.net/memory-limit<br />memory_limit = 128M<br />
Copy after login


运行后,显示
<br />Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 24 bytes) in D:\server\www\02\array.php on line 5<br />
Copy after login



之后,我便把数组调小了些

<br />$arr = array();<br /><br />for($i=0;$i<1550000;$i++) {<br />    $arr[] = $i;<br />}<br /><br /><br />echo count($arr);<br />
Copy after login


这次可以显示了,长度为150000

接着我又改了下php.ini中memory_limit大小

<br />; Maximum amount of memory a script may consume (128MB)<br />; http://php.net/memory-limit<br />memory_limit = 512M<br />
Copy after login


运行了下,之前报错的那个数据现在可以显示了,数组的长度为1590000

我想问下,php.ini里的memory_limit和数组长度是什么关系,当然了从问题上看,可以知道前者的大小决定后者的长度,如何根据前者的大小测试数组长度的上限呢?


------解决方案--------------------
跟长度没有关系。。

是你脚本执行时使用的内存有关
------解决方案--------------------
我想看了这个,你应该知道点什么了
$t = 0;<br />echo memory_get_usage() - $t, ' ',$t = memory_get_usage(), PHP_EOL;<br />$a = array();<br />echo memory_get_usage() - $t, ' ', $t = memory_get_usage(), PHP_EOL;<br />$a[] = 1;<br />echo memory_get_usage() - $t, ' ', $t = memory_get_usage(), PHP_EOL;<br />$a[] = 2;<br />echo memory_get_usage() - $t, ' ', $t = memory_get_usage(), PHP_EOL;<br />$a[] = 3;<br />echo memory_get_usage() - $t, ' ', $t = memory_get_usage(), PHP_EOL;<br />
Copy after login

------解决方案--------------------
数组大概占多少内存,可以估算出来。比如你存放的是4字节的int数,数组有1000个元素就是4*1000字节。如果是字符串,按字符估算个平均值既可。

当然memory_limit设置的值不光是你一个数组所占用的内存数,php本身进程启动,以及加载那些扩展、还有你程序中其他地方也需要占用内存。
------解决方案--------------------
是说企图再分配24个字节时,超过了128M的内存限制, 所以失败了.

引用:
是不是从字面上来理解,允许使用的134217728字节内存已经耗尽,试图分配24个字节,也就是再分配24字节的内存就可以?
Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

See all articles