php数组的限制于memory_limit的关系解决方法
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 />
在网上看了下,说是跟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 />
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 />
运行后,显示
<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 />
之后,我便把数组调小了些
<br />$arr = array();<br /><br />for($i=0;$i<1550000;$i++) {<br /> $arr[] = $i;<br />}<br /><br /><br />echo count($arr);<br />
这次可以显示了,长度为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 />
运行了下,之前报错的那个数据现在可以显示了,数组的长度为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 />
------解决方案--------------------
数组大概占多少内存,可以估算出来。比如你存放的是4字节的int数,数组有1000个元素就是4*1000字节。如果是字符串,按字符估算个平均值既可。
当然memory_limit设置的值不光是你一个数组所占用的内存数,php本身进程启动,以及加载那些扩展、还有你程序中其他地方也需要占用内存。
------解决方案--------------------
是说企图再分配24个字节时,超过了128M的内存限制, 所以失败了.

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

AI Hentai Generator
Generate AI Hentai for free.

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

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

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

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

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

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

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

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

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