PHP FTP函数

PHP ftp_alloc() 函数用于为要上传到 FTP 服务器的文件分配空间。

语法

ftp_alloc(ftp, size, response) 

参数

ftp必需。 指定要使用的 FTP 连接。
size必需。 指定要分配的字节数。
response可选。 指定一个变量。服务器响应的文本表示形式存储在此变量中(如果提供)。

返回值

成功时返回 true,失败时返回 false。

示例:

下面的示例显示了ftp_alloc()函数的用法。

<?php
//要使用的FTP服务器
$ftp_server = "ftp.example.com";

//FTP 连接的用户名
$ftp_user = "user";
  
//用户密码
$ftp_pass = "password";
   
//建立连接或者连接失败
$ftp = ftp_connect($ftp_server)
    or die("Could not connect to $ftp_server");
   
if($ftp) {
  echo "Successfully connected to $ftp_server!\n";
 
  //尝试登录
  if(@ftp_login($ftp, $ftp_user, $ftp_pass)) {
    echo "Connected as $ftp_user@$ftp_server\n";

    //需要上传文件的服务器文件路径
    $server_file = "server_demo.txt";

    //需要上传的本地文件路径
    $local_file = "local_demo.txt";

    if(ftp_alloc($ftp, filesize($local_file), $result)) {
      echo "Space successfully allocated on server.  Sending $local_file\n";
      ftp_put($ftp, $server_file, $local_file, FTP_BINARY);
    } else {
      echo "Unable to allocate space on server.  Server said: $result\n";
    }
    
  } else {
    echo "Couldn't connect as $ftp_user\n";
  }
 
  //关闭连接
  if(ftp_close($ftp)) {
    echo "Connection closed successfully!\n"; 
  } 
}
?> 

上述代码的输出将是:

Successfully connected to ftp.example.com!
Connected as user@ftp.example.com
Space successfully allocated on server.  Sending local_demo.txt
Connection closed successfully!