Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 292 Bytes

README.md

File metadata and controls

16 lines (14 loc) · 292 Bytes
  • Usage *
/*
 * Example usage
 */
$ftp = new \TheCodingCompany\FTP();
$ftp->connect("<hostname_or_ip_address>", 21)
    ->login("<username>", "<password>")
    ->chdir("/<upload_location>/")
    //->passv()
    //->listFiles()
    ->upload("<full_path_and_filename>")
    ->close();