php使用ftp函数创建目录(生成静态)
时间:2021-07-01 10:21:17
帮助过:9人阅读
/** - * desc:create directory through FTP connection
- * link:bbs.it-home.org
- * date:2013/02/24
- */
- function FtpMkdir($path, $newDir) {
- $server='ftp.yourserver.com'; // ftp server
- $connection = ftp_connect($server); // connection
- // login to ftp server
- $user = "me";
- $pass = "password";
- $result = ftp_login($connection, $user, $pass);
-
- // check if connection was made
- if ((!$connection) || (!$result)) {
- return false;
- exit();
- } else {
- ftp_chdir($connection, $path); // go to destination dir
- if(ftp_mkdir($connection,$newDir)) { // create directory
- return $newDir;
- } else {
- return false;
- }
- ftp_close($conn_id); // close connection
- }
- }
- ?>
|