search
HomeBackend DevelopmentPHP TutorialHow to modify the t limit of memory_limi in PHP

This article mainly introduces how to modify the memory_limit limit of PHP. It has certain reference value. Now I share it with everyone. Friends in need can refer to it.

When running a PHP program, usually You will encounter the error "Fatal Error: Allowed memory size of xx bytes exhausted" (allowed memory size of xx bytes exhausted), this means that the PHP script uses Too much memory was added and exceeded the maximum allowed memory set by the system. To solve this problem, you first need to check whether your program has allocated too much memory. If there are no problems with the program, you can increase PHP's memory limit (memory_limit) through the following methods.

1. Check the memory limit value of php

In order to check this value, you need to print it first phpinfo();

#Put this script on your web server and call it in the browser. At this time you can see the information about your PHP environment configuration, part of which is about "memory_limit", as shown below:

Note: You can use this method to view other parameter settings of PHP, not just memory_limit

2. What should the memory_limit be set to?

This completely depends on the requirements of your application. For example, WordPress requires 32MB to run the core code. Drupal 6 requires this value to be at least 16MB, and recommends setting it to 32MB. If you install a lot of plug-ins, especially those that require image processing, you may need 128MB or more memory.

3, How to set memory_limit

Method 1: php.ini

The simplest or most commonly used method is to modify php.ini

1. First find the php.ini file that is effective for your website. Since there are multiple PHP parameters can be set anywhere. Finding the correct configuration file and making changes is the first step. If you created a php file using the above method to view its configuration parameters, you can find the item "Loaded Configuration File". The following is an example:

For Linux users, you can do this by executing “php -i | grep Loaded Configuration File ” to find the corresponding configuration file. For Windows users, you can try to modify php.ini in your php installation directory.

2. Edit php.ini In php.ini, find the item "memory_limit". If not, you can Add this parameter yourself at the end of the file. The following are some setting examples

memory_limit = 128M; You can change 128M to any value you want to set,Save the file

3. Restart the web server. If the web server uses Apache, execute: service httpd restart

In some cases, you may not be allowed to modify php.ini privately. For example, if you purchased a virtual hosting service, but your service provider does not allow you to modify this file. Then, you may want to consider other methods to increase the value of memory_limit.

Method 2: .htaccess

Description: This method is only available when php is executed with the Apache module Take effect. Find the ".htaccess" file in the root directory of your website. If you don't have one, you can create one yourself. Then put the following configuration into it

##php_value memory_limit 128M ; You can change 128M to any value you want to set

Method 3: Modify the memory settings of PHP during runtime

Just add the following command line to your PHP code.

ini_set('memory_limit','128M');

##ini_set('memory_limit',-1) ; //No memory limit

memory_limit modification failed

If you use a virtual host , there may be a failure to modify the value of memory_limit. You need to contact your service provider to see how to deal with this. Usually they limit the maximum value that can be set or do not allow you to modify it at all. If their environment really cannot meet your requirements, then you may want to consider changing to another hosting provider.

The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

PHP method to determine whether a link is valid

PHP method based on seconds PHP duration

The above is the detailed content of How to modify the t limit of memory_limi in PHP. 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
如何更改Windows 11的PIN码如何更改Windows 11的PIN码Dec 23, 2023 pm 04:15 PM

有些朋友设置了pin码,但是由于不好记或者不方便等原因,想要修改,但是不知道win11怎么修改pin码,其实我们只需要进入账户设置的登录选项就可以了。win11怎么修改pin码:第一步,右键底部开始菜单。第二步,打开其中的“设置”第三步,点击左边的“账户”选项。第四步,打开右侧列表的“登录选项”第五步,点击pin右侧“小箭头”展开。第六步,点击下方“更改pin”第七步,在其中输入原pin码,再输入新pin码。输入完成点击“确定”即可完成修改。如果你之前没有pin码,也可以在这个位置新建pin码。

如何更改用户文件夹名称:Win11教程如何更改用户文件夹名称:Win11教程Jan 09, 2024 am 10:34 AM

有些游戏会自动安装到用户文件夹中,而且需要英文文件夹才可以,不过很多朋友不知道win11怎么修改用户文件夹名称,其实我们只要修改用户名就可以了。win11修改用户文件夹名称:第一步,按下键盘“Win+R”组合键。第二步,在其中输入“gpedit.msc”回车打开组策略编辑器。第三步,展开“windows设置”下的“安全设置“第四步,打开“本地策略”中的“安全选项”第五步,双击打开右边的“账户:重命名系统管理员账户”策略。第六步,在下方输入想要修改的文件夹名称再点击“确定”保存即可。修改用户文件夹

win11电源模式修改位置和方法win11电源模式修改位置和方法Dec 30, 2023 pm 05:25 PM

我们在win11系统中,可以通过修改电源模式的方法,来降低我们的电池消耗,或是提高我们的系统性能。设置方法非常简单,只要找到电源选项就可以了,下面就跟着小编一起来看一下具体的操作过程吧。win11在哪里修改电源模式1、首先点击任务栏最左边的按钮,打开开始菜单。2、然后在开始菜单上方搜索并打开“控制面板”3、在控制面板中,可以找到“硬件和声音”4、进入硬件和声音,点击电源选项下的“选择电源计划”5、然后在其中就可以修改电源模式了,可以选择平衡、节能模式或者展开隐藏附加计划,选择高性能模式。

PyCharm背景颜色调整技巧:迅速掌握!PyCharm背景颜色调整技巧:迅速掌握!Feb 03, 2024 am 09:39 AM

快速掌握PyCharm背景颜色的修改技巧,需要具体代码示例近年来,Python语言在程序开发领域愈发流行,而PyCharm作为一款集成开发环境(IDE),被广大开发者所喜爱和使用。在PyCharm中,经常会有一些开发者对IDE的界面进行个性化定制,包括背景颜色的修改。本文将介绍PyCharm背景颜色修改的技巧,并给出具体的代码示例,帮助读者快速掌握这项技能。

win10修改电脑开机密码的简单方法win10修改电脑开机密码的简单方法Jul 16, 2023 pm 05:33 PM

修改电脑开机密码的简单方法是什么?给win10电脑设置一个开机密码可以很好的保护资料隐私安全。不过,有些时候我们处于安全性考虑会设置比较复杂再者是简单的密码,但是想要更改电脑密码,却不知win10怎么修改电脑开机密码,其实电脑开机密码修改方法还是很简单的,下面我们就来看看修改电脑开机密码。win10修改电脑开机密码的简单方法如下:方法一1、进入电脑“搜索”功能搜索“账户”,打开“管理你的账户”。2、在出现的账户界面,左边列表栏找到“登陆选项”,点击选择。3、找到密码,选择点击更改的按钮。4、输入

修改win11窗口边角为圆角的指南修改win11窗口边角为圆角的指南Dec 31, 2023 pm 08:35 PM

很多朋友更新好win11系统后,发现win11的界面窗口采用了全新的圆角设计。但是一些人觉得不喜欢这个圆角设计,想要将它修改为曾经的界面,但是却不知道怎么修改,下面就一起来看看吧。win11怎么修改圆角1、win11的圆角设计时内置的系统设置,目前无法修改。2、所以大家如果不喜欢使用win11的圆角设计的话,可以等待微软提供修改的方法。3、如果实在使用起来不习惯,还可以选择退回曾经的win10系统。4、如果大家不知道如何回退的话,可以查看本站提供的教程。5、要是使用上方教程无法进行回退的话,还可

加速pip源,解决下载速度缓慢的难题加速pip源,解决下载速度缓慢的难题Jan 17, 2024 am 10:18 AM

快速修改pip源,解决下载速度慢的问题,需要具体代码示例导语:在使用Python开发过程中,我们经常需要使用pip来安装各种第三方库。然而,由于网络环境的限制或者默认源的问题,很多时候pip的下载速度会非常慢,给我们的开发带来了不便。因此,本文将介绍如何快速修改pip源,以解决下载速度慢的问题,并提供具体的代码示例。一、问题分析在使用pip下载第三方库时,我

如何更改Windows 10任务栏的颜色如何更改Windows 10任务栏的颜色Jan 01, 2024 pm 09:05 PM

win10任务栏颜色修改起来非常简单,但是很多用户发现设置不了,其实非常的简单,只要在电脑的个性化里选择自己喜爱的颜色就可以了,要是改变不了颜色的注意详细的设置哦。win10任务栏颜色怎么改第一步:右键桌面——点击个性化第二步:颜色区域自定义第三步:选择喜欢的颜色PS:如果你无法改变颜色,可以点击颜色->选择颜色->自定义->默认windows模式,选择深色即可。

See all articles

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

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft