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

PHP의 ftp_systype() 함수

<시간/>

ftp_systype() 함수는 FTP 서버의 시스템 유형 식별자를 반환합니다.

구문

ftp_systype(con);

매개변수

  • 단점 - FTP 연결

반환

ftp_systype() 함수는 성공하면 시스템 유형을 반환하고 실패하면 FALSE를 반환합니다.

예시

다음은 예입니다 -

<?php
   $ftp_server = "192.168.0.4";
   $ftp_user = "jacob";
   $ftp_pass = "tywg61gh";
   $conn = ftp_ssl_connect($ftp_server) or die("Could not connect to $ftp_server");
   $login = ftp_login($conn, $ftp_user, $ftp_pass);
   if ($t = ftp_systype($conn)){
      echo "System type = $t";
   } else {
      echo "Cannot get the type!";
   }
   ftp_close($ftp_conn);
?>