0

我正在尝试使用 PHP 和 Codeigniter 通过 FTP 发送文件。我实际上没有使用 Codeigniter FTP 类,因为它不能满足我的需要,因此它是原生 PHP。

基本上我需要的是脚本在发送的文件超时时执行操作。目前我的代码是这样的:

// connect to the ftp server
$connection = ftp_connect($item_server);

// login to the ftp account
$login = ftp_login($connection, $item_username, $item_password);

// if the connection or account login failed, change status to failed
if (!$connection || !$login) 
    { 
        // do the connection failed action here
    }
else
    {

// set the destination for the file to be uploaded to
$destination = "./".$item_directory.$item_filename;

// set the source file to be sent
$source = "./assets/photos/highres/".$item_filename;

// upload the file to the ftp server
$upload = ftp_put($connection, $destination, $source, FTP_BINARY);

// if the upload failed, change the status to failed
if (!$upload) 
    {
        // do the file upload failed action here
    }
// fi the upload succeeded, change the status to sent and close the ftp connection
else 
{
    ftp_close($connection);
    // update the item's status as 'sent'
// do the completed action here
    }

}

所以基本上脚本连接到服务器并尝试将文件放入。如果无法建立连接,或者无法放入文件,它当前会执行操作。但我认为超时它只是坐在那里没有回复。我需要对所有内容的响应,因为它在自动脚本中运行,并且用户知道发生了什么的唯一方法是脚本告诉他们。

如果服务器超时,我怎样才能得到响应?

非常感谢任何帮助:)

4

1 回答 1

0

如果您阅读手册,忽略超时值,它默认为 90 秒。

您可以将此值设置为更可接受的值并单独验证连接,而不是同时验证连接和登录。

// connect to the ftp server and timeout after 15 seconds if connection can't be established
$connection = ftp_connect($item_server, 21, 15);
if( ! $connection )
{
    exit('A connection could not be established');  
}

// login to the ftp account
if( ! ftp_login($connection, $item_username, $item_password) )
{
    exit('A connection was established, but the credientials seems to be wrong');   
}

请注意,ftp_login()如果登录凭据错误,则会发出警告,因此您可能会以另一种方式处理(错误处理或简单地抑制警告)。

于 2012-05-16T07:52:26.687 回答