|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patchespatched.txt (last revision 2012-05-21 05:06 UTC by shengdong01 at 163 dot com)Pull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-09-28 19:30 UTC] pierrick@php.net
-Status: Open
+Status: Closed
-Assigned To:
+Assigned To: pierrick
[2012-09-28 19:30 UTC] pierrick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 19:00:02 2025 UTC |
Description: ------------ client script: <?php file_get_contents("http://localhost:8080/slow.php"); server script <?php /*slow.php*/ sleep(10); echo "this is slow.php"; Test script: --------------- client script: <?php file_get_contents("http://localhost:8080/slow.php"); server script <?php /*slow.php*/ sleep(10); echo "this is slow.php"; Expected result: ---------------- the cpu idle is still high Actual result: -------------- the cpu idle is still high,not slow any more