PHP ftp_raw() 函數(shù)
PHP ftp_raw() 函數(shù)

定義和用法
ftp_raw() 函數(shù)向 FTP 服務(wù)器發(fā)送一個 raw 命令。
語法
ftp_raw(ftp_connection,command)
參數(shù) | 描述 |
---|---|
ftp_connection | 必需。規(guī)定要使用的 FTP 連接。 |
command | 必需。規(guī)定要執(zhí)行的命令。 |
提示和注釋
注釋:該函數(shù)以字符串?dāng)?shù)組的形式返回服務(wù)器的響應(yīng)。不執(zhí)行解析,且 ftp_raw() 不檢查命令是否正確。
實(shí)例
<?php
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
print_r (ftp_raw($conn,"USER admin"));
print_r (ftp_raw($conn,"PASS ert456"));
ftp_close($conn);
?>
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
print_r (ftp_raw($conn,"USER admin"));
print_r (ftp_raw($conn,"PASS ert456"));
ftp_close($conn);
?>
上面的代碼將輸出:
Array ([0] => 331 User admin, password please)
Array ([0] => 230 Password Ok, User logged in)
Array ([0] => 230 Password Ok, User logged in)

相關(guān)文章
- PHP 教程
- PHP 簡介
- PHP 數(shù)組
- PHP While 循環(huán)
- PHP 多維數(shù)組
- PHP array() 函數(shù)
- PHP array_fill_keys() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_multisort() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP ksort() 函數(shù)
- PHP next() 函數(shù)
- PHP prev() 函數(shù)
- PHP rsort() 函數(shù)
- PHP uksort() 函數(shù)
- PHP cURL 函數(shù)
- PHP 5 Filesystem 函數(shù)