-
-
/**
- * 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
- }
- }
- ?>
-
复制代码
|