Skip to content

Instantly share code, notes, and snippets.

@mageekguy
Created June 17, 2013 13:17
Show Gist options
  • Save mageekguy/5796789 to your computer and use it in GitHub Desktop.
Save mageekguy/5796789 to your computer and use it in GitHub Desktop.
<?php
$file = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'atoum.' . md5(__FILE__);
if (is_file($file) === false || filemtime(__FILE__) > filemtime($file))
{
file_put_contents($file, substr(file_get_contents(__FILE__), __COMPILER_HALT_OFFSET__ + 1));
}
require $file;
__halt_compiler();
<?php echo __FILE__ . PHP_EOL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment