PHP FTP 类

WBOY
发布: 2016-07-29 09:13:59
原创
990 人浏览过
<?php /*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 * Description of FTP
 *
 * @author admin
 */
class FTP {

    public $conn;
    public $username;
    public $password;
    public $ftp_url;

    public function __construct($username = &#39;&#39;, $passwrod = &#39;&#39;, $url = &#39;127.0.0.1&#39;) {
        $this->ftp_url = $url;
        $this->username = $username;
        $this->password = $passwrod;
    }

    //连接FTP服务器
    public function connect() {
        if (!($this->conn = ftp_connect($this->ftp_url))) {
            return false;
        } else {
            return true;
        }
    }

    //登录
    public function login() {
        if (!ftp_login($this->conn, $this->username, $this->password)) {
            return false;
        } else {
            return true;
        }
    }

    //获取服务器系统类型
    public function getSysType() {
        return ftp_systype($this->conn);
    }

    //获取当前目录
    public function getCurrentDir() {
        return ftp_pwd($this->conn);
    }

    //显示文件列表
    public function listFiles($dir_name = '.') {
        return ftp_nlist($this->conn, $dir_name);
    }

    //显示详细文件列表
    public function listFilesOfDetails($dir_name = '') {
        return ftp_rawlist($this->conn, $dir_name);
    }

    //下载文件
    public function downloadFile($local = '', $remote = '', $type = FTP_ASCII) {
        if (ftp_get($this->conn, $local, $remote, $type)) {
            return true;
        } else {
            return false;
        }
    }

    //<strong>上传文件</strong>
    public function uploadedFile($remote, $local, $type = FTP_ASCII) {
        if (ftp_put($this->conn, $remote, $local, $type)) {
            return true;
        } else {
            return false;
        }
    }

    //建立目录
    public function createDir($dirname) {
        return ftp_mkdir($this->conn, $dirname);
    }

    //切换目录
    public function chdir($dirname) {
        return ftp_chdir($this->conn, $dirname);
    }

    //删除目录
    public function rmdir($dirname) {
        return ftp_rmdir($this->conn, $dirname);
    }

    //退出
    public function quitFTP() {
        return ftp_quit($this->conn);
    }

}
登录后复制

.

以上就介绍了PHP FTP 类,包括了上传文件方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!