PHP ini_set 内存限制
尽管在 PHP 中设置内存限制的方法有很多,但通常的方法是修改用户机器上安装 php 版本的 php.ini
文件。
但是,这取决于用户想要对内存修改做什么,因为分配给变量消耗的默认内存限制足以执行大多数任务。
使用 PHP 脚本设置内存限制
我们将首先 echo ini_get("memory_limit")
检查当前内存限制是多少。然后,我们将使用 ini_set("memory_limit","");
修改内存限制。
php.ini
或 .htaccess
文件中的内存限制,这可能会导致以后出现其他有关内存的问题。这个问题的实际解决方案是创建一个文件,添加以下脚本,并使用它来修改默认内存。
<?php
//check memory limit using ini_get
echo "Current Memory:";
// this will print your current memory limit
echo ini_get("memory_limit")."<br>";
//set memory using ini_set
//format is very important
ini_set("memory_limit","256M");
//print new memory limit
echo "Updates Memory:";
echo ini_get("memory_limit");
?>
我们最初使用 ini_get("memory_limit");
检查内存限制功能。然后,我们使用 ini_set("memory_limit", "");
。
后面的函数有两个参数,如前所示。你可以在函数中设置所需的内存限制。
输出:
Current Memory:128M
Updates Memory:256M
使用 Php.ini
文件设置内存限制
首先,你需要确定当前 php 的安装位置你机器上 PHP 目录的根目录
。
找到 php.ini
文件后,搜索 memory_limit.
它将显示 PHP 脚本可以消耗的最大内存,默认情况下必须为 128MB
。
之后,你必须将其更新为所需的内存限制。例如:memory_limit = 256M
。
相反,你可以使用根目录中的 .htacsess 文件
来更改它,如果你使用的是 C-Panel,则可以使用 C-Panel。
更改 php.ini
文件中的内存限制:
我们已经访问了我们的 php.ini
文件并修改了上面示例中的内存限制。
值得注意的是,此方法适用于你的所有 php 脚本。
你可能不想为所有文件更改它。因此,我们建议使用前一种方法。
因此,你需要做的就是定义 ini_set("memory_limit", "");
在你的脚本中起作用。
参考:
Sarwan Soomro is a freelance software engineer and an expert technical writer who loves writing and coding. He has 5 years of web development and 3 years of professional writing experience, and an MSs in computer science. In addition, he has numerous professional qualifications in the cloud, database, desktop, and online technologies. And has developed multi-technology programming guides for beginners and published many tech articles.
LinkedIn