Skip to content

Instantly share code, notes, and snippets.

@JoelMarcey
Created June 26, 2014 04:48
Show Gist options
  • Save JoelMarcey/3d08abb88454efc2d4e4 to your computer and use it in GitHub Desktop.
Save JoelMarcey/3d08abb88454efc2d4e4 to your computer and use it in GitHub Desktop.
php:// hhvm
<?php
// Set the limit to 5 MB.
$fiveMBs = 5 * 1024 * 1024;
$fp = fopen("php://temp/maxmemory:$fiveMBs", 'r+');
fputs($fp, "hello\n");
// Read what we have written.
rewind($fp);
echo stream_get_contents($fp);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment