设置网络操作超时:
<?php
// connect and login to FTP server
$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or die("Could not connect to $ftp_server");
$login = ftp_login($ftp_conn, $ftp_username, $ftp_userpass);
// set network operation timeout to 120 seconds
echo ftp_set_option($ftp_conn,FTP_TIMEOUT_SEC,120);
// close connection
ftp_close($ftp_conn);
?>
ftp_set_option() 函数设置当前 FTP 连接的运行时选项。
ftp_set_option(
ftp_conn, option, value);
Parameter | Description |
---|---|
ftp_conn | Required. Specifies the FTP connection to use |
option | Required. Specifies the runtime option to set. Possible values:
|
value | Required. Specifies the value of the option parameter |
返回值: | 如果可以设置该选项则为 TRUE,如果不能设置则为 FALSE(还会引发警告消息) |
---|---|
PHP 版本: | 4.2+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!