猿问
PHP中函数DIR和opendir有什么区别?
PHP中函数DIR和opendir有什么区别
繁花如伊
浏览 633
回答 2
2回答
智慧大石
dir 打开一个系统类opendir 打开一个文件目录不了解底层的实现原理,看不懂,不过根据手册上的描述,dir的底层实现应该和opendir的实现差不多,dir就是封装好的opendir!
0
0
0
慕的地10843
$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
0
0
随时随地看视频
慕课网APP
相关分类
Python
我要回答