My development computer has windows installed. And I experienced the strange php behavior:
<?php file_put_contents('c:/q', microtime(1) . "\r\n", FILE_APPEND); sleep(10);
When I run this script in a browser simultaneously on two different tabs, I get these results
1294713622.125 1294713632.2188
which is clearly not what I expected, although everything is fine in the CLI.
So the question is: what can block execution? ( session.auto_start is Off )
source share