|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-12-06 07:49 UTC] judas dot iscariote at gmail dot com
[2005-12-06 08:47 UTC] judas dot iscariote at gmail dot com
[2005-12-06 08:49 UTC] judas dot iscariote at gmail dot com
[2005-12-06 10:02 UTC] helly@php.net
[2005-12-06 19:27 UTC] judas dot iscariote at gmail dot com
[2005-12-06 20:17 UTC] iliaa@php.net
[2005-12-06 21:35 UTC] judas dot iscariote at gmail dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 05:00:01 2025 UTC |
Description: ------------ DirectoryIterator class is segfaulting after a Notice : Notice - Object of class DirectoryIterator could not be converted to int ( registered in apache error_log before segfault) Reproduce code: --------------- $dirs = new DirectoryIterator( 'dir' ); foreach( $dirs as $entry ) { if($dirs->isDir($entry) && !$dirs->isDot($entry)){ $list[] = $entry; } } Expected result: ---------------- code executed correctly. Actual result: -------------- notice] child pid 16011 exit signal Segmentation fault (11) can't get a backtrace :-(