Skip to content

Instantly share code, notes, and snippets.

@timani
Last active December 11, 2015 07:49
Show Gist options
  • Save timani/4569157 to your computer and use it in GitHub Desktop.
Save timani/4569157 to your computer and use it in GitHub Desktop.
memory limit ini_set
## debug file test.php
<?php
echo 'Memory limit before = ' . ini_get('memory_limit') . "<br />";
ini_set('memory_limit', '321M');
echo 'Memory limit after = ' . ini_get('memory_limit');
## Output
Memory limit before = 512M
Memory limit after = 321M
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment