Search w3schools.com:

SHARE THIS PAGE

PHP ftp_raw() Function


PHP FTP Reference Complete PHP FTP Reference

Definition and Usage

The ftp_raw() function sends a raw command to the FTP server.

Syntax

ftp_raw(ftp_connection,command)

Parameter Description
ftp_connection Required. Specifies the FTP connection to use
command Required. Specifies the command to execute


Tips and Notes

Note: This function returns the server response as an array of strings. No parsing is performed, and ftp_raw() does not check if the command was correct.


Example

<?php
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");

print_r (ftp_raw($conn,"USER admin"));
print_r (ftp_raw($conn,"PASS ert456"));

ftp_close($conn);
?>

The output of the code above will be:

Array ([0] => 331 User admin, password please)
Array ([0] => 230 Password Ok, User logged in)


PHP FTP Reference Complete PHP FTP Reference

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]