PHP Classes

File: get_file.php

Recommend this page to a friend!
  Classes of Paul.Ren   FTP Class   get_file.php   Download  
File: get_file.php
Role: Example script
Content type: text/plain
Description: get a file from FTP server
Class: FTP Class
Retrieve or send files or strings data via FTP
Author: By
Last change:
Date: 20 years ago
Size: 160 bytes
 

Contents

Class file image Download
<?
require "./ftp.class.php";
$ftp = new ClsFTP("root","");
$ftp->get("1.mid","get.mid");//get file
$ftp->p($ftp->rawlist("."));//list

$ftp->close();
?>