用PHP列出目录内容
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用PHP列出目录内容相关的知识,希望对你有一定的参考价值。
This code allows to list the contents of any given directory.
<?php function list_directory_content($dir){ if($file != '.' && $file != '..' && $file != '.htaccess'){ echo '<a target="_new" href="'.$dir.$file.'">'.$file.'</a><br>'." "; } } } } } ?>
以上是关于用PHP列出目录内容的主要内容,如果未能解决你的问题,请参考以下文章