PHP | ftp_size() function Last Updated : 28 Jul, 2021 Comments Improve Suggest changes Like Article Like Report The ftp_size() function is an inbuilt function in PHP which is used to get the size of a given file on FTP server.Syntax: ftp_size( $ftp_connection, $file_name ); Parameter: This function accepts two parameters as mentioned above and described below: $ftp_connection: It is required parameter. It specifies the already existing FTP connection to use where the file exists.$file_name: It is required parameter. It specifies the file or file path on remote server i.e. FTP server. Return Value: It returns the size of file on success or -1 on error.Note: All ftp server doesn't support this function.This function is available on PHP 4.0.0 and newer version.The following examples cannot be run on online IDE. So try to run in some PHP hosting server or localhost with proper ftp server name. Below examples illustrate the ftp_size() function in PHP:Example 1: php <?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); // Closing connection if(ftp_close($ftp_connection)) { echo "<br>Connection closed Successfully!"; } } ?> Output: Example 2: Connect to ftp server using port number 21. php <?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); // Closing connection if(ftp_close($ftp_connection)) { echo "<br>Connection closed Successfully!"; } } ?> Output: Reference: https://www.php.net/manual/en/function.ftp-size.php Comment More infoAdvertise with us Next Article PHP | ftp_size() function G gekcho Follow Improve Article Tags : Web Technologies PHP PHP-function PHP- FTP Similar Reads PHP sizeof() Function In this article, we will see how to get the length of the array using the sizeof() function in PHP. The sizeof() function is a built-in function in PHP and is used to count the number of elements present in an array or any other countable object. Syntax: int sizeof(array, mode);Parameter: This funct 2 min read PHP | ftp_raw() function The ftp_raw() function is an inbuilt function in PHP which is used to send a raw command to the Remote server i.e. FTP Server. Syntax: ftp_raw( $ftp_connection, $command ) Parameters: This function accepts two parameters as mentioned above and described below:  $ftp_connection: It is required para 2 min read PHP | ftp_put() function The ftp_put() function is an inbuilt function in PHP which is used to upload files to FTP server.Syntax:  ftp_put( $ftp_connection, $remote_file_path, $local_file_path, $mode, $start_position ); Parameter: This function accepts five parameters as mentioned above and described below:  $ftp_connecti 3 min read PHP | ftp_pwd() function The ftp_pwd() function is an inbuilt function in PHP which returns the current directory name of the specified FTP connection. This function was introduced in PHP 4. Syntax: string ftp_pwd( $ftp_conn ) Parameter: This function accepts single parameter $ftp_conn which is used to specify the used FTP 2 min read PHP | ftp_rawlist() function The ftp_rawlist() function is an inbuilt function in PHP which returns a list of files with information like permissions, last modified the files from a specified directory on Remote server i.e. FTP Server. Syntax:  ftp_rawlist( $ftp_connection, $directory, $recursive ) Parameters: This function a 2 min read Like