php简单获取目录列表的方法

这篇文章主要介绍了php简单获取目录列表方法,涉及php操作目录的技巧,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了php简单获取目录列表方法。分享给大家供大家参考。具体实现方法如下:

<?php function list_directory_content($dir){ if(is_dir($dir)){ if($handle = opendir($dir)){ while(($file = readdir($handle)) !== false){ if($file != '.' && $file != '..' && $file != '.htaccess'){ echo '<a target="_blank" href="'https://www.jb51.net/article/.$dir.$file.'">' .$file.'</a><br>'."\n"; } } closedir($handle); } } } ?>

希望本文所述对大家的php程序设计有所帮助。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/cacf260038c8ae124cc54d7f89721bc3.html