- 授权协议: BSD
- 开发语言: PHP
- 操作系统: 跨平台
- 软件首页: http://code.google.com/p/ftp-php/
软件介绍
FTP for PHP 是封装了 FTP 客户端操作的 PHP 类。
示例代码:
try {
$ftp = new Ftp;
$ftp->connect($host);
$ftp->login($username, $password);
$ftp->put($destination_file, $source_file, FTP_BINARY);
} catch (FtpException $e) {
echo 'Error: ', $e->getMessage();
}
Python Data Structures and Algorithms
Benjamin Baka / Packt Publishing / 2017-5-30 / USD 44.99
Key Features A step by step guide, which will provide you with a thorough discussion on the analysis and design of fundamental Python data structures.Get a better understanding of advanced Python c......一起来看看 《Python Data Structures and Algorithms》 这本书的介绍吧!
