PHP ftp_mkdir() 函數(shù)
PHP ftp_mkdir() 函數(shù)

定義和用法
ftp_mkdir() 函數(shù)在 FTP 服務(wù)器上創(chuàng)建一個(gè)新目錄。
如果成功,該函數(shù)返回新目錄的名稱和路徑。如果失敗,則返回 FALSE。
語法
ftp_mkdir(ftp_connection,dir)
參數(shù) | 描述 |
---|---|
ftp_connection | 必需。規(guī)定要使用的 FTP 連接。 |
dir | 必需。規(guī)定要?jiǎng)?chuàng)建的目錄的名稱。 |
實(shí)例
<?php
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"admin","ert456");
echo ftp_mkdir($conn,"testdir");
ftp_close($conn);
?>
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"admin","ert456");
echo ftp_mkdir($conn,"testdir");
ftp_close($conn);
?>
上面的代碼將輸出:
/testdir

相關(guān)文章
- PHP 簡(jiǎn)介
- PHP 語法
- PHP echo 和 print 語句
- PHP 常量
- PHP 運(yùn)算符
- PHP For 循環(huán)
- PHP 過濾器
- PHP 高級(jí)過濾器
- PHP array_key_last() 函數(shù)
- PHP array_keys() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_replace_recursive() 函數(shù)
- PHP array_uintersect_assoc() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP array_values() 函數(shù)
- PHP asort() 函數(shù)
- PHP usort() 函數(shù)
- PHP HTTP 函數(shù)
- PHP Mail 函數(shù)
- PHP PDO