在FTP服务器上创建一个新目录:
<?php
// connect and login to FTP server
$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or die("Could not connect to $ftp_server");
$login = ftp_login($ftp_conn, $ftp_username, $ftp_userpass);
$dir = "images";
// try to create directory $dir
if (ftp_mkdir($ftp_conn, $dir))
{
echo "Successfully created $dir";
}
else
{
echo "Error while creating $dir";
}
// close connection
ftp_close($ftp_conn);
?>
ftp_mkdir() 函数在 FTP 服务器上创建一个新目录。
ftp_mkdir(
ftp_conn, dir);
Parameter | Description |
---|---|
ftp_conn | Required. Specifies the FTP connection to use |
dir | Required. Specifies the name of the directory to create |
返回值: | 成功时为新目录的名称,失败时为 FALSE |
---|---|
PHP 版本: | 4+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!