- 授权协议: 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();
}
Think Python
Allen B. Downey / O'Reilly Media / 2012-8-23 / GBP 29.99
Think Python is an introduction to Python programming for students with no programming experience. It starts with the most basic concepts of programming, and is carefully designed to define all terms ......一起来看看 《Think Python》 这本书的介绍吧!
