虛擬主機PHP中memory_limit是PHP單一腳本單次執行最大可用記憶體限制;預設限制為256MB,最大可調整為512MB。以下由小編介紹使用memory_limit限制PHP進程的記憶體使用方法。
memory_limit 顧名思義,即限制 PHP 進程對於記憶體的使用。例如:
magento2 的系統需求裡有關於 PHP memory_limit 的限制,不能低於 512M。 (預設值為128M, 如果不更改,會導致magento 的後台處理邏輯無法正常執行)
看一下PHP 官網的解釋
##都都是也需要。注意的是,memory_limit 的值越高,即單一PHP 程序佔用的記憶體越多,系統能夠並發處理的請求越少。例如,一個2G 記憶體的機器memory_limit 設為128M, 則同時最多能處理16 個請求memory_limit 設為256M, 則同時最多能處理8 個請求memory_limit 設為512M, 則同時最多能處理4個請求memory_limit 的值是越大越好麼? 當然不是,memory_limit 主要是為了防止程式 bug, 或死循環佔用大量的內存,導致系統宕機。在引入大量三方插件,或程式碼時,進行記憶體限制就非常有必要了。 memory_limit 會使每個 PHP process 都佔用固定的記憶體? 還是僅僅為分配記憶體的上限?測試一下This sets the maximum amount of memory in bytes that a script is allowed to allocate. This helps prevent poorly written scripts for eating up all available memory on a server. Note that to have no memory limit, set this directive to -1.
server { listen 8093; root /home/zhongwei/work/test/memory_limit/; index index.php index.html index.htm; server_name localhost; location / { # try_files $uri $uri/ =404; try_files $uri $uri/ /index.php?q=$uri&$args; } location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_param PHP_VALUE "memory_limit = 10M"; fastcgi_pass unix:/run/php/php7.0-fpm.sock; } }
<?php $char_count = 2; $M = 1024 * 1024; echo sprintf("Current memory_limit value is: %s.", ini_get('memory_limit')); echo sprintf('<br/>Amount of memory allocated to PHP: %0.3fM.', memory_get_usage() / $M); $s = str_repeat("a", $M * $char_count); //sleep(30); echo sprintf('<br/>Amount of memory allocated to PHP: %0.3fM.', memory_get_usage() / $M); echo sprintf('<br/>Total memory allocated from system: %0.3fM.', memory_get_usage($real_usage=true) / $M); echo '<br/>success';
Current memory_limit value is: 10M. Amount of memory allocated to PHP: 0.344M. Amount of memory allocated to PHP: 2.348M. Total memory allocated from system: 4.004M. success
Current memory_limit value is: 10M. Amount of memory allocated to PHP: 0.346M.
2017/03/01 10:41:23 [error] 6903#6903: *39 FastCGI sent in stderr: "PHP message: PHP Fatal error: Allowed memory size of 10485760 bytes exhausted (tried to allocate 20971552 bytes) in /home/zhongwei/work/test/memory_limit/index.php on line 8 PHP message: PHP Stack trace: PHP message: PHP 1. {main}() /home/zhongwei/work/test/memory_limit/index.php:0 PHP message: PHP 2. str_repeat() /home/zhongwei/work/test/memory_limit/index.php:8" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/run/php/php7.0-fpm.sock:", host: "localhost:8093"
以上是如何使用memory_limit限制PHP進程的記憶體使用的詳細內容。更多資訊請關注PHP中文網其他相關文章!