PHP ftp_chdir() 函數(shù)
PHP ftp_chdir() 函數(shù)

定義和用法
ftp_chdir() 函數(shù)改變 FTP 服務(wù)器上的當(dāng)前目錄為指定目錄。
如果成功,該函數(shù)返回 TRUE。如果失敗,則返回 FALSE 和一個(gè)警告。
語(yǔ)法
ftp_chdir(ftp_connection,directory)
參數(shù) | 描述 |
---|---|
ftp_connection | 必需。規(guī)定要使用的 FTP 連接。 |
directory | 必需。規(guī)定要切換到的目錄。 |
實(shí)例
<?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);
?>
$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
Dir: /images

相關(guān)文章
- PHP If Else 語(yǔ)句
- PHP 魔術(shù)常量
- PHP $_GET 變量
- PHP 發(fā)送電子郵件
- PHP Secure E-mails
- PHP 高級(jí)過(guò)濾器
- PHP array_diff() 函數(shù)
- PHP array_diff_key() 函數(shù)
- PHP array_fill_keys() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_replace_recursive() 函數(shù)
- PHP array_values() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP extract() 函數(shù)
- PHP in_array() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP uksort() 函數(shù)
- PHP usort() 函數(shù)
- PHP Mail 函數(shù)