We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0d48804 + 47ba04d commit 781e666Copy full SHA for 781e666
library/Zend/Memory/Manager.php
@@ -169,7 +169,7 @@ public function __construct($backend = null)
169
170
$memoryLimitStr = trim(ini_get('memory_limit'));
171
if ($memoryLimitStr != '' && $memoryLimitStr != -1) {
172
- $this->_memoryLimit = (integer)$memoryLimitStr;
+ $this->_memoryLimit = (int)$memoryLimitStr;
173
switch (strtolower($memoryLimitStr[strlen($memoryLimitStr)-1])) {
174
case 'g':
175
$this->_memoryLimit *= 1024;
0 commit comments