输入banner图图片脚本导航/分类

php内存限制

上传文件时候用了file_get_contents报错:

Allowed memory size of 134217728 bytes exhausted (tried to allocate 169854368 bytes)

原来是在php里面有个配置项是用来控制最大内存的参数

memory_limit = 1024M

调节这个参数就好。

回复内容:

上传文件时候用了file_get_contents报错:

Allowed memory size of 134217728 bytes exhausted (tried to allocate 169854368 bytes)

原来是在php里面有个配置项是用来控制最大内存的参数

memory_limit = 1024M

调节这个参数就好。

楼主正解哦。

是这样。。。你也可以在方法体开头设置这个值

php.ini文件的基本配置要熟悉