Func directory closedir:修订历史

本页内容

差异选择:选中要对比的版本的单选按钮,按Enter键或下方的按钮。
说明:(当前)=与最后版本之间的差异,(之前)=与上一版本之间的差异,=小编辑。

    2022年8月17日 (星期三)

    • 当前之前 22:142022年8月17日 (三) 22:14Neo 讨论 贡献 1,181字节 +1,181 创建页面,内容为“{{DISPLAYTITLE:closedir()}}3 = PHP closedir() 函数 = PHP Directory 参考手册 打开一个目录,读取它的内容,然后关闭: <sample title="" desc="" lang="php" hererun="1">example_start <?php $dir = "/images/"; // Open a directory, and read its contents if (is_dir($dir)){ if ($dh = opendir($dir)){ while (($file = readdir($dh)) !== false){ echo "filename:" . $file . "<br>";…”