|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-06-26 09:02 UTC] derick@php.net
[2003-06-26 10:50 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 21 10:00:01 2025 UTC |
Description: ------------ php get seg. fault if i try to use none exists array element. Php version: PHP 4.3.3RC2-dev (cvs snapshot 20030624) Reproduce code: --------------- <? $s = "a|b|c|d"; for ($i = 0; $i < 1000; $i++) { for ($j = 0; $j < 1000; $j++) { $a = split("\|", $s); $h[$i]['date'][$j]['count'] = $a[4]; } } ?> Expected result: ---------------- Successfully finished. Actual result: -------------- Segmentation fault