PHP ftp_raw() 函数
PHP ftp_raw() 函数
完整的 PHP FTP 参考手册定义和用法
ftp_raw() 函数向 FTP 服务器发送一个 raw 命令。
语法
ftp_raw(ftp_connection,command)
参数 | 描述 |
---|---|
ftp_connection | 必需。规定要使用的 FTP 连接。 |
command | 必需。规定要执行的命令。 |
提示和注释
注释:该函数以字符串数组的形式返回服务器的响应。不执行解析,且 ftp_raw() 不检查命令是否正确。
实例
<?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)
完整的 PHP FTP 参考手册
相关文章
- PHP 教程
- PHP 简介
- PHP 数组
- PHP While 循环
- PHP 多维数组
- PHP array() 函数
- PHP array_fill_keys() 函数
- PHP array_intersect_ukey() 函数
- PHP array_key_exists() 函数
- PHP array_multisort() 函数
- PHP array_push() 函数
- PHP array_reduce() 函数
- PHP array_udiff_uassoc() 函数
- PHP ksort() 函数
- PHP next() 函数
- PHP prev() 函数
- PHP rsort() 函数
- PHP uksort() 函数
- PHP cURL 函数
- PHP 5 Filesystem 函数