|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-04-15 07:33 UTC] info at mgeiger dot de
[2006-04-15 10:00 UTC] tony2001@php.net
[2006-04-15 11:40 UTC] info at mgeiger dot de
[2006-04-15 11:43 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 29 22:00:01 2025 UTC |
Description: ------------ The command line php engine creates a segmentation fault when using array_pop(). The Apache module doesn't have this problem. Reproduce code: --------------- <? $ar = array (345, 567); var_dump ($ar); $v = array_pop ($ar); var_dump ($v); ?> Actual result: -------------- # /usr/local/php5/bin/php fehler.php array(2) { [0]=> int(345) [1]=> int(567) } Segmentation fault