class untuk FTP atau file transfer protocol
Contoh Penggunaan:
$config = array( 'hostname' => 'example.com', 'username' => 'example', 'password' => 'secret', # 'port' => 21, # 'passive' => true ); $ftp = _class('ftp', $config); $ftp->connect(); $ftp->changedir('storage'); $r = $ftp->list_files(); pr($r, 'ada koneksi');
File Path: includes/class/ftp.php class untuk FTP atau file transfer protocol
0 Comment
Post Your Comment