香港VPS的php如何遍历目录
香港VPS在php中遍历目录的方法 1.使用glob()函数遍历目录 function getfiles($path){ foreach(glob($path) as $afile){ if(is_dir($afile)) { getfiles($afile.’/*’); } else { echo $afile.’ ‘; } } } getfile […]
香港VPS在php中遍历目录的方法 1.使用glob()函数遍历目录 function getfiles($path){ foreach(glob($path) as $afile){ if(is_dir($afile)) { getfiles($afile.’/*’); } else { echo $afile.’ ‘; } } } getfile […]