ftp_pasv
(PHP 4, PHP 5)
ftp_pasv — 返回当前 FTP 被动模式是否打开
<h3>说明</h3>
bool <strong>ftp_pasv</strong>
( resource <code>$ftp_stream</code>
, bool <code>$pasv</code>
)
<p>
在被动模式打开的情况下,数据的传送由客户机启动,而不是由服务器开始。
</p>
<p>
请注意 <strong>ftp_pasv()</strong> 只能在 FTP
登录成功后方可调用,否则会失败。
</p>
参数
ftp_stream
FTP 连接资源。
pasv
如果参数 pasv
为 TRUE
,打开被动模式传输 (PASV MODE)
,否则则关闭被动传输模式。
返回值
<p>
成功时返回 <strong><code>TRUE</code></strong>, 或者在失败时返回 <strong><code>FALSE</code></strong>。
</p>
范例
Example #1 ftp_pasv() 实例
<?php
$file = 'somefile.txt';
$remote_file = 'readme.txt';
// set up basic connection
$conn_id = ftp_connect($ftp_server);
// login with username and password
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
// turn passive mode on
ftp_pasv($conn_id, true);
// upload a file
if (ftp_put($conn_id, $remote_file, $file, FTP_ASCII)) {
echo "successfully uploaded $filen";
} else {
echo "There was a problem while uploading $filen";
}
// close the connection
ftp_close($conn_id);
?>