Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个使用 unlink() 删除文件的 php 脚本。启动时,脚本文件仍然存在于我的文件夹中,但“空”...如果我重新启动查找器,这些文件将不再存在于文件夹中...
我使用 osx 10.8.4、MAMP 2.1.4、php 版本 5.4.10
然后,如果我这样做:
unlink($file); $filecount = count(glob($mydir)); $filecount = 1;
更新 我关于文件计数的错误:),但是因为它总是出现在我的取景器中?
空目录的 glob 返回 false,然后 count(false) == 1 :D
Glob 返回值是一个包含匹配文件/目录的数组,如果没有匹配的文件,则为空数组,或者错误为 FALSE。