当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ftp_size()用法及代码示例


ftp_size()函数是PHP中的内置函数,用于获取FTP服务器上给定文件的大小。


用法:

ftp_size( $ftp_connection, $file_name );

参数:该函数接受上述和以下描述的两个参数:


  • $ftp_connection:它是必填参数。它指定文件已经存在的要使用的FTP连接。
  • $file_name:它是必填参数。它指定远程服务器(即FTP服务器)上的文件或文件路径。

返回值:成功返回文件大小,错误返回-1。

注意:

  • 所有ftp服务器都不支持此函数。
  • 此函数在PHP 4.0.0和更高版本上可用。
  • 以下示例无法在在线IDE上运行。因此,请尝试使用适当的ftp服务器名称在某些PHP托管服务器或localhost中运行。

以下示例说明了PHP中的ftp_size()函数:

范例1:

<?php 
  
// Connect to FTP server 
  
// Use a correct ftp server 
$ftp_server = "localhost"; 
  
// Use correct ftp username 
$ftp_username="user"; 
  
// Use correct ftp password corresponding 
// to the ftp username 
$ftp_userpass="user"; 
  
// File name or path to upload to ftp server 
$file = "shiva.jpg"; 
   
// Establishing ftp connection  
$ftp_connection = ftp_connect($ftp_server) 
    or die("Could not connect to $ftp_server"); 
  
if( $ftp_connection ) { 
    echo "successfully connected to the ftp server!"; 
      
    // Logging in to established connection with 
    // ftp username password 
    $login = ftp_login($ftp_connection, $ftp_username, $ftp_userpass); 
      
    if($login) {  
          
        // Checking whether logged in successfully or not 
        echo "<br>logged in successfully!"; 
          
        // Size of the file using ftp_size() function. 
        $file_size = ftp_size($ftp_connection, $file); 
          
        if ($file_size != -1) { 
            echo "<br>$file is $file_size bytes."; 
        } 
        else { 
            echo "<br>Error getting file size."; 
        } 
    }  
    else { 
        echo "<br>login failed!"; 
    } 
      
    // echo ftp_get_option($ftp_connection, 1); 
    // Closeing  connection 
    if(ftp_close($ftp_connection)) { 
        echo "<br>Connection closed Successfully!"; 
    }  
} 
  
?>

输出:

范例2:使用端口号21连接到ftp服务器。

<?php 
  
// Connect to FTP server 
  
// Use a correct ftp server 
$ftp_server = "localhost"; 
  
// Use correct ftp username 
$ftp_username="user"; 
  
// Use correct ftp password corresponding 
// to the ftp username 
$ftp_userpass="user"; 
  
// File name or path to upload to ftp server 
$file = "shiva.jpg"; 
   
// Establishing ftp connection  
$ftp_connection = ftp_connect($ftp_server, 21) 
    or die("Could not connect to $ftp_server"); 
  
if( $ftp_connection ) { 
    echo "successfully connected to the ftp server!"; 
      
    // Logging in to established connection with 
    // ftp username password 
    $login = ftp_login($ftp_connection, $ftp_username, $ftp_userpass); 
      
    if($login) {  
          
        // Checking whether logged in successfully or not 
        echo "<br>logged in successfully!"; 
          
        // Size of the file using ftp_size() function. 
        $file_size = ftp_size($ftp_connection, $file); 
          
        if ($file_size != -1) { 
            echo "<br>$file is $file_size bytes."; 
        } 
        else { 
            echo "<br>Error getting file size."; 
        } 
    }  
    else { 
        echo "<br>login failed!"; 
    } 
      
    // echo ftp_get_option($ftp_connection, 1); 
    // Closeing  connection 
    if(ftp_close($ftp_connection)) { 
        echo "<br>Connection closed Successfully!"; 
    }  
} 
  
?>

输出:

参考: https://www.php.net/manual/en/function.ftp-size.php



相关用法


注:本文由纯净天空筛选整理自gekcho大神的英文原创作品 PHP | ftp_size() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。