PHP FTP 类

<?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 = '', $passwrod = '', $url = '127.0.0.1') {
        $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;
        }
    }

    //上传文件
    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);
    }

}

.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值