例
创建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_connection,dir );
参数 | 描述 |
---|---|
ftp_connection | 需要。 指定FTP连接使用 |
dir | 需要。 指定要创建的目录名 |
技术细节
返回值: | 成功则返回新目录的名称,或FALSE的失败 |
---|---|
PHP版本: | 4+ |
<PHP FTP参考