Please see https://github.com/2072/fileCreationProfiler
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 | |
// PHP PThreads issue 329 diagnostic script by John Wellesz | |
// Also a nice example of shared object management... | |
const ONEMUSEC = 1000000; | |
printf('file age: %d', time() - filemtime(__file__)); | |
echo PHP_EOL; |