当我访问http://localhost/myapp111/index/
时,此脚本将执行:
$a = 0;
for($i = 0; $i < 100000000; ++$i) {
$a = $a +$i ;
}
然后我无法访问http://localhost/myapp111/*
(无法访问myapp111上的任何页面,我必须在脚本完成之后等待)
但我可以访问http://localhost/myapp2222/*
这是什么原因?有什么方法可以解决这个问题吗?
答案 0 :(得分:0)
它可能是PHP会话,我不记得他们是否序列化参与同一会话的请求。