我正在尝试使用 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
}
}
所以基本上脚本连接到服务器并尝试将文件放入。如果无法建立连接,或者无法放入文件,它当前会执行操作。但我认为超时它只是坐在那里没有回复。我需要对所有内容的响应,因为它在自动脚本中运行,并且用户知道发生了什么的唯一方法是脚本告诉他们。
如果服务器超时,我怎样才能得到响应?
非常感谢任何帮助:)