Skip to content

Instantly share code, notes, and snippets.

View pawelnapierala's full-sized avatar

Paweł Napierała pawelnapierala

  • Szczecin
View GitHub Profile
@pawelnapierala
pawelnapierala / test-memory-limit.php
Created March 29, 2022 15:32 — forked from thonixx/test-memory-limit.php
Test PHPs memory limit
<pre>
<?php
$megabyte = 1528; // define the max megabytes which should be tested
function tryAlloc($megabyte){
echo "try allocating {$megabyte} megabyte...";
$mb = $megabyte;
$dummy = str_repeat("-",1048576*$mb);
echo "pass.";
echo "Usage: " . memory_get_usage(true)/1048576;