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
相關用法
- p5.js sq()用法及代碼示例
- d3.js d3.map.has()用法及代碼示例
- PHP next()用法及代碼示例
- p5.js day()用法及代碼示例
- p5.js pow()用法及代碼示例
- CSS var()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP pow( )用法及代碼示例
- PHP pi( )用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- p5.js str()用法及代碼示例
注:本文由純淨天空篩選整理自gekcho大神的英文原創作品 PHP | ftp_size() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。