Created
June 17, 2013 13:17
-
-
Save mageekguy/5796789 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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