PHP中函数DIR和opendir有什么区别
2 回答
智慧大石
TA贡献1946条经验 获得超3个赞
dir 打开一个系统类
opendir 打开一个文件目录
不了解底层的实现原理,看不懂,不过根据手册上的描述,dir的底层实现应该和opendir的实现差不多,dir就是封装好的opendir!
慕的地10843
TA贡献1785条经验 获得超8个赞
$arr = scandir($dir);
$all = count($arr)-2;//所有文件总数除./和../
$php = count(preg_grep("/\.php$/", $arr));
$txt0 = $all - count(preg_grep("/\.txt$/", $arr));
echo '共有'.$all.'个文件,php文件'.$php.'个,非txt文件'.$txt0.'个';Hello,希望有帮助.更多到CSDN,365testing泡泡
添加回答
举报
0/150
提交
取消