Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP의 ftp_mkdir() 함수

<시간/>

ftp_mkdir() 함수는 FTP 서버에 새 디렉토리를 만드는 데 사용됩니다.

구문

ftp_mkdir(con,dir);

매개변수

  • 단점 - FTP 연결

  • 디렉토리 − 생성할 디렉토리 이름

반환

ftp_mkdir() 함수는 성공하면 디렉터리 이름을 반환하고 실패하면 FALSE를 반환합니다.

예시

다음은 새 디렉토리를 생성하는 예입니다 -

<?php
   $ftp_server="192.168.0.4";
   $ftp_user="amit";
   $ftp_pass="tywg61gh";
   $con = ftp_connect($ftp_server) or die("Could not connect to $ftp_server");
   $login = ftp_login($con, $ftp_user, $ftp_pass);
   $newdir = "new.txt";
   if (ftp_mkdir($con, $newdir)){
      echo "Created the new directory successfully!";
   } else {
      echo "The new directory cannot be created!";
   }
   ftp_close($con);
?>