|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-07-26 09:22 UTC] jani@php.net
[2007-08-03 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 01 03:00:01 2025 UTC |
Description: ------------ frequent call file_exists() function Reproduce code: --------------- $db -> Query('SELECT `fullpath` FROM `files`); $files = $db -> FetchAllRows(); foreach($files as $f) file_exists($files); echo 'Complete'; Expected result: ---------------- Complete Actual result: -------------- If files is not existed and theirs number more than 5, php is not show 'Complete'. If files is existed php show 'complete'.