1
我試圖訪問FTP服務器上的文件列表。我的代碼工作正常,但所有結果都顯示在一行上,我希望鏈接顯示爲鏈接,每行一個。如何獲取由新行分隔的FTP服務器的文件列表
這是我的嘗試:
$ftp_server = "abc";
$ftp_user = "xyz";
$ftp_password = "123";
$path = "/";
if(ftp_login($conn,$ftp_user,$ftp_password))
{
$contents= ftp_nlist($conn, $path);
echo implode("\n",$contents) ;
}
?>
的結果是這樣的:
file1 file2 file3
我希望它是這樣的:
file1
file2
file3