PHP ftp_chdir() 函数
PHP 教程
· 2019-01-26 06:28:11
定义和用法
ftp_chdir() 函数改变 FTP 服务器上的当前目录为指定目录。
如果成功,该函数返回 TRUE。如果失败,则返回 FALSE 和一个警告。
语法
ftp_chdir(ftp_connection,directory)
参数 | 描述 |
---|---|
ftp_connection | 必需。规定要使用的 FTP 连接。 |
directory | 必需。规定要切换到的目录。 |
实例
<?php $conn = ftp_connect("ftp.testftp.com") or die("Could not connect"); ftp_login($conn,"admin","ert456"); //Outputs the current directory echo "Dir: ".ftp_pwd($conn); echo "<br />"; //Change to the images directory ftp_chdir($conn,"images"); echo "Dir: ".ftp_pwd($conn); ftp_close($ftp_server); ?>
上面的代码将输出:
Dir: / Dir: /images
点击查看所有 PHP 教程 文章: https://www.codercto.com/courses/l/5.html
The Ruby Programming Language
David Flanagan、Yukihiro Matsumoto / O'Reilly Media, Inc. / 2008 / USD 39.99
Ruby has gained some attention through the popular Ruby on Rails web development framework, but the language alone is worthy of more consideration -- a lot more. This book offers a definition explanat......一起来看看 《The Ruby Programming Language》 这本书的介绍吧!