ホームページ >php教程 >php手册 >FTP クラス (myftp.php)

FTP クラス (myftp.php)

WBOY
WBOYオリジナル
2016-06-13 12:45:131499ブラウズ



class myftp {

var $connector;
var $getback;

function connect($ftp_server, $uname, $passwd){
// FTP 接続を確立します
$this->connector = @ftp_connect($ftp_server);
$this->login_result = @ftp_login($this->connector, "$uname" , "$passwd");
if ((!$this->connector)
(!$this->login_result))
{
echo "FTP 接続に失敗しました! n" ;
echo "ユーザー $uname n の $ftp_server に接続しようとしました";
死ぬ。
} else {
echo "$ftp_server、ユーザー $uname n に接続しました";
}
}

関数 lastmodtime($value){
$getback = ftp_mdtm ($this->connector,$value);
return $getback;
}

関数が変更されましたir($targetdir){
$getback = ftp_chdir($this->コネクタ, $targetdir);
return $getback;
}
function getdir(){
$getback = ftp_pwd($this->connector);
return $getback;
}

function get_file_list($directory){
$getback = ftp_nlist($this->connector, $directory);
return $getback;
}

function get_file($file_to_get, $mode, $mode2){
$realfile =basename($file_to_get);
$filename = $realfile;

$checkdir = @$this-> Changedir($realfile);
if ($checkdir == TRUE){
ftp_cdup($this->connector);
echo "n[DIR] $realfile";
}else{
「....」をエコーし​​ます。 $realfile ."n";
$getback = ftp_get($this->connector, $filename, $realfile, $mode);
if ($mode2){
$delstatus = ftp_delete($ this->connector, $file_to_get);
if ($delstatus == TRUE){
echo "$host 上のファイル $realfile が削除されました";
}
}
}
return $getback;
}

関数モード($pasvmode){
$result = ftp_pasv($this->connector, $pasvmode);
}

function ftp_bye(){
ftp_quit($this->connector);
return $getback;
}
}

?>

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。