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 PHP | fgets( ) Function The fgets() function in PHP is an inbuilt function which is used to return a line from an open file. It is used to return a line from a file pointer and it stops returning at a specified length, on end of file(EOF) or on a new line, whichever comes first. The file to be read and the number of bytes 2 min read PHP fputs( ) Function The fputs() function in PHP is an inbuilt function which is used to write to an open file. The fputs() function stops at the end of the file or when it reaches the specified length passed as a parameter, whichever comes first. The file, string, and the length that has to be written are sent as param 3 min read PHP | fgetc( ) Function The fgetc() function in PHP is an inbuilt function which is used to return a single character from an open file. It is used to get a character from a given file pointer. The file to be checked is used as a parameter to the fgetc() function and it returns a string containing a single character from t 2 min read PHP | fstat( ) Function The fstat() function in PHP is an inbuilt function which is used to return information about an open file. The file name is sent as a parameter to the fstat() function and it returns an array with the following elements : Numeric Associative Description 0 dev Device number 1 ino inode number* 2 mode 3 min read PHP | ftp_exec() function The ftp_exec() function is an inbuilt function in PHP that is used to execute a command on the FTP server. Syntax: ftp_exec( $ftp_connection, $command ) Parameters: This function accepts two parameters as mentioned above and described below:  $ftp_connection: It is required parameter. It specifies 2 min read Like