ホームページ  >  記事  >  バックエンド開発  >  phpのftpクラス

phpのftpクラス

WBOY
WBOYオリジナル
2016-06-23 14:35:48985ブラウズ

ftp_server = サーバー; $this->ftp_user = ユーザー名; $this->ftp_port = ポート; = ftp_connect($ this->ftp_server, $this->ftp_port) または die("$this->ftp_server に接続できません") // ログインを試みます if (!ftp_login($this-> conn_id, $this->ftp_user, $this->ftp_pass)) { $this->message("接続に失敗しました $this->ftp_user") } else { $this->message("接続に成功しました); $this->ftp_user "); } } //関数: 新しいディレクトリを作成します //$path のデフォルトは空のディレクトリです //作成が成功した場合は true を返し、そうでない場合は false を返します。 function newdir($path = null) { if($this->ftp_is_dir($this->conn_id,$path)||@ftp_mkdir($this->conn_id,$path)) return true; $this->newdir(dirname($path))) return false; ftp_mkdir($this->conn_id,$path); // $path: であるかどうかを確認します。 is ディレクトリの場合は true、それ以外の場合は false を返します。 function ftp_is_dir($path) { $original_directory = ftp_pwd($this->conn_id); if(@ftp_chdir($this->conn_id,$path)) { ftp_chdir($this->conn_id,$original_directory); return true; } else return false; } //関数: ファイルをアップロードします。 //$ftppath: FTP サーバーが存在する場合は、ローカル ファイルの場所を返します。間違い。 function Uploadfile($ftppath = null, $localpath = null) { if(!empty($ftppath) && !empty($localpath)) { $ret = ftp_nb_put($this->conn_id, $ftppath, $localpath, FTP_BINARY) ); while ($ret == FTP_MOREDATA) { $ret = ftp_nb_ continue ($this->conn_id) } if ($ret != FTP_FINISHED) { $this->message( "アップロードに失敗しました"); } else { $this->message("アップロード成功"); return true; } } } //関数: ディレクトリの削除 //$dir: 削除するディレクトリ // 削除が成功した場合は true を返し、そうでない場合は false を返します。 function deldir($dir = null) { if (ftp_rmdir($this->conn_id, $dir)) { $this->message("ディレクトリの削除に成功しました") } else { $this->; message("ディレクトリの削除に失敗しました"); return false; } } //関数: ディレクトリに戻る // 現在のディレクトリ名を返す function redir() { return ftp_pwd($this->conn_id) } // 関数: 削除file/ /$path: ファイル パス // 正常に削除された場合は true を返し、それ以外の場合は false を返します。 function delfile($path = null) { if(ftp_delete($this->conn_id, $path)) { $this->message("ファイルは正常に削除されました") } else { $this-> message("ファイルの削除に失敗しました"); return false; } } //関数: 情報を出力します //$str: 出力する情報 function message($str = null) { if(!empty($str)) { echo $ str; } } //関数: FTP 接続関数 closeftp() { ftp_close($this->conn_id) } } /* 以下はデモです。 "text /html; charset=gb2312" /> redir();テスト' ; $locpath="/home/liye/public_html/php_ftp/test"; //$conn->uploadfile($ftppath,$locpath); //$conn->newdir('test/123/1233) ') ; //$conn->deldir('test/123/1233'); $conn->delfile('ftp.php'); ; * /

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