|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-11-15 02:44 UTC] laruence@php.net
-Status: Open
+Status: Feedback
[2015-11-15 02:44 UTC] laruence@php.net
[2015-11-16 16:41 UTC] velichko at networx-bg dot com
-Status: Feedback
+Status: Closed
-PHP Version: 5.6.15
+PHP Version: 5.6.14
[2015-11-16 16:41 UTC] velichko at networx-bg dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 08:00:01 2025 UTC |
Description: ------------ segfault when there is multiple concurrent connections can simulate with 3 instances of console script using this code while [ true ]; do wget http://127.0.0.1/test.php -q -O - done Test script: --------------- class Bug { const arr = array('bg','en'); function __construct ($language) { if (in_array($language,self::arr)) { } } } $test = new Bug('gb'); Actual result: -------------- [core:notice] [pid 3069] AH00052: child pid 24079 exit signal Segmentation fault (11) and page stop loading and browser receive empty response.