- PHP教程
- PHP-主页
- PHP - 简介
- PHP-环境设置
- PHP - 语法概述
- PHP - 变量类型
- PHP - 常量
- PHP - 运算符类型
- PHP - 决策
- PHP - 循环类型
- PHP-数组
- PHP-字符串
- PHP - 网络概念
- PHP - 获取和发布
- PHP - 文件包含
- PHP - 文件和 I/O
- PHP - 函数
- PHP-Cookie
- PHP-会话
- PHP - 发送电子邮件
- PHP-文件上传
- PHP - 编码标准
- 高级PHP
- PHP - 预定义变量
- PHP-正则表达式
- PHP - 错误处理
- PHP - 错误调试
- PHP - 日期和时间
- PHP 和 MySQL
- PHP 和 AJAX
- PHP 和 XML
- PHP——面向对象
- PHP - 面向 C 开发人员
- PHP - 适合 PERL 开发人员
- PHP 表单示例
- PHP-表单介绍
- PHP - 验证示例
- PHP - 完整表格
- PHP框架作品
- PHP-框架工程
- PHP - 核心 PHP 与 Frame Works
- PHP 设计模式
- PHP - 设计模式
- PHP 函数参考
- PHP - 内置函数
- PHP 有用资源
- PHP - 问题与解答
- PHP - 有用的资源
- PHP - 讨论
PHP-phdfs 类
句法
phdfs { /* Properties */ static $host; static $port; /* Methods */ public bool connect( void ) public __construct( string $ip , string $port ) public bool copy( string $source_file , string $destination_file ) public bool create_directory( string $path ) public bool delete( string $path ) public void __destruct( void ) public bool disconnect( void ) public bool exists( string $path ) public array file_info( string $path ) public array list_directory( string $path [, int $level = 0 ] ) public string read( string $path [, int $length = 0 ] ) public bool rename( string $old_path , string $new_path ) public int tell( string $path [, int $read_length = 1024 ] ) public bool write( string $path , string $buffer [, int $mode = 0 ] ) }
phdfs::connect() -
phdfs::connect() 函数成功时返回 true,失败时返回 false。
句法
public bool phdfs::connect( void )
phdfs::__construct() -
句法
public phdfs::__construct( string $ip , string $port )
phdfs::copy() -
phdfs::copy() 函数成功时返回 true,失败时返回 false。
句法
public bool phdfs::copy( string $source_file , string $destination_file )
phdfs::create_directory() -
phdfs::create_directory() 函数可以在成功时返回 true,在失败时返回 false。
句法
public bool phdfs::create_directory( string $path )
phdfs::delete() -
phdfs::delete() 函数成功时返回 true,失败时返回 false。
句法
public bool phdfs::delete ( string $path )
phdfs::__destruct() -
phdfs::__destruct() 函数不返回任何值。
句法
public void phdfs::__destruct( void )
phdfs::disconnect():-
phdfs::disconnect() 函数成功时返回 true,失败时返回 false。
句法
public bool phdfs::disconnect( void )
phdfs::exists() -
phdfs::exists() 函数成功时返回 true,失败时返回 false。
句法
public bool phdfs::exists( string $path )
phdfs::file_info() -
phdfs::file_info() 函数可以在成功时返回一个数组,在失败时返回 false。
句法
public array phdfs::file_info( string $path )
phdfs::list_directory() -
phdfs::list_directory() 函数可以在成功时返回一个数组,在失败时返回 false。
句法
public array phdfs::list_directory( string $path [, int $level = 0 ] )
phdfs::read() -
句法
public string phdfs::read( string $path [, int $length = 0 ] )
phdfs::rename() -
phdfs::rename() 函数成功时返回 true,失败时返回 false。
句法
public bool phdfs::rename( string $old_path , string $new_path )
phdfs::tell() -
句法
public int phdfs::tell( string $path [, int $read_length = 1024 ] )
phdfs::write() -
phdfs::write() 函数成功时返回 true,失败时返回 false。
句法
public bool phdfs::write( string $path , string $buffer [, int $mode = 0 ] )