PHP | ftp_raw() function Last Updated : 07 Aug, 2021 Comments Improve Suggest changes Like Article Like Report 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 parameter. It specifies the already existing FTP connection.$command: It is required parameter. It specifies the command to execute on the FTP Server. Return Value: It returns server's response as an array of strings. Returns raw data, no parsing is performed. It does not contribute to determining whether the command is executed or not. Note: This function is available for 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. Example: PHP <?php // Connect to FTP server // Use a correct ftp server $ftp_server = "localhost"; // Establishing ftp connection $ftp_connection = ftp_connect($ftp_server) or die("Could not connect to $ftp_server"); if($ftp_connection) { // Storing response from ftp_raw() in $response $response = ftp_raw($ftp_connection, "USER abc"); // Printing $response with print_r() print_r($response); // Closing connection if(ftp_close($ftp_connection)) { echo "<br>Connection closed Successfully!"; } } ?> Output: Array ( [0] => 331 Password required for abc ) Connection closed Successfully! Reference: https://www.php.net/manual/en/function.ftp-raw.php Comment More infoAdvertise with us Next Article PHP | ftp_raw() function G gekcho Follow Improve Article Tags : Web Technologies PHP PHP-function PHP- FTP Similar Reads 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 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_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_size() function 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 3 min read PHP | ftell( ) Function The ftell() function in PHP is an inbuilt function which is used to return the current position in an open file. The file is sent as a parameter to the ftell() function and it returns the current file pointer position on success, or FALSE on failure.Syntax:  ftell( $file ) Parameters Used: The ftel 2 min read Like