Skip to content

Instantly share code, notes, and snippets.

@maranemil
Created May 6, 2015 12:35
Show Gist options
  • Save maranemil/bc1cff5dbd4a79176c26 to your computer and use it in GitHub Desktop.
Save maranemil/bc1cff5dbd4a79176c26 to your computer and use it in GitHub Desktop.
Get Php Version and Set Memory Limit and Execution Time
ini_set('max_execution_time', 300); //300 seconds = 5 minutes
ini_set('max_execution_time', 0); //0=NOLIMIT
set_time_limit(10); // or this way
ini_set('memory_limit', '256M');
ini_set('memory_limit', '3G'); // 3 Gigabytes
echo '<!-- ';
echo 'Die aktuelle PHP Version ist ' . phpversion();
echo ' -->';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment