(PHP 4, PHP 5, PHP 7)
ftp_mkdir — ディレクトリを作成する
$ftp_stream
, string $directory
)
FTP サーバー上に、指定した directory
を作成します。
ftp_stream
FTP 接続のリンク ID 。
directory
作成されるディレクトリの名前。
成功した時には新規に作成したディレクトリ名、エラー時に FALSE
を返します。
例1 ftp_mkdir() の例
<?php
$dir = 'www';
// 接続を確立する
$conn_id = ftp_connect($ftp_server);
// ユーザー名とパスワードでログインする
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
// ディレクトリ $dir の作成を試みる
if (ftp_mkdir($conn_id, $dir)) {
echo "successfully created $dir\n";
} else {
echo "There was a problem while creating $dir\n";
}
// 接続を閉じる
ftp_close($conn_id);
?>