Maison > Article > développement back-end > 为什么每次多出来两个div?
我在外面套了一个div 为什么又多出来两个空的div呢 为什么每次总是多出来两个空的东西呢?这是哪里的原因呢?怎么样才能去掉呢?
<code>$dir = "upload/"; if (is_dir($dir)){ if ($dh = opendir($dir)){ while (($file = readdir($dh))!= false){ echo '<div>'; if (!is_dir($file)) { $filePath = $dir.$file; echo "<img src="%22.%24filePath.%22" alt="为什么每次多出来两个div?" >"; } echo '</div>'; } closedir($dh); } }</code>
我在外面套了一个div 为什么又多出来两个空的div呢 为什么每次总是多出来两个空的东西呢?这是哪里的原因呢?怎么样才能去掉呢?
<code>$dir = "upload/"; if (is_dir($dir)){ if ($dh = opendir($dir)){ while (($file = readdir($dh))!= false){ echo '<div>'; if (!is_dir($file)) { $filePath = $dir.$file; echo "<img src="%22.%24filePath.%22" alt="为什么每次多出来两个div?" >"; } echo '</div>'; } closedir($dh); } }</code>
打印下
<code>print_r(readdir($dh));</code>
就知道为什么了。
readdir 会打印出 . 和 .. ,所以你的 echo "
多出来的两个应该是当前目录的 . 和上级目录的 .. 你把这个两个过滤掉就行
if
判断就好了<code class="php"> $dir = "upload/"; if (is_dir($dir)){ if ($dh = opendir($dir)){ while (($file = readdir($dh))!= false){ if (!is_dir($file)) { //. 和.. 在文件夹下,不管在什么系统中. 和..都是存在的, .指向当前目录, ..上一级目录 if ($file === '.' || $file === '..') { continue; } echo '</code>