|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-12-23 06:30 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 04:00:02 2025 UTC |
Description: ------------ Like in 4.3.9 glob() returns false instead of an empty array. Reproduce code: --------------- $files = glob("/some_empty_dir/*"); var_dump($files); Expected result: ---------------- array(0) { } Actual result: -------------- bool(false)