㈠ php鍙浠ラ亶鍘嗕竴涓猼xt鏂囦歡琛屼箞銆佸氨鏄涓琛屼竴琛屽湴閬嶅巻
$handler=fopen('test6.txt','r');//鎵撳紑鏂囦歡
while(!feof($handler)){
$m[]=fgets($handler,4096);//fgets閫愯岃誨彇錛4096鏈澶ч暱搴︼紝榛樿や負1024
}
fclose($handler);//鍏抽棴鏂囦歡
//杈撳嚭鏂囦歡
echo'<pre>';
print_r($m);
echo'</pre>';
㈡ PHP如何遍歷指定文件夾,獲取所有文件列表並生成下載鏈接
試編寫代碼如下:
<?php
$dir="D:/WWW/ftp";//指定的路徑
$sitepath='http://localhost/ftp/';
//遍歷文件夾下所有文件
if(false!=($handle=opendir($dir))){
echo"$dir目錄下的文件列表:<BR/>";
$i=0;
while(false!==($file=readdir($handle))){
if($file!="."&&$file!=".."&&!is_dir($dir.'/'.$file)){
echo'<ahref="'.$sitepath.$file.'">'.$file.'</a><br/>';
}
}
//關閉句柄
closedir($handle);
}
?>
代碼中需要提示的是:
如果是運行於互聯網上,需要考慮文件的訪問安全性。
運行截圖: