PHP
 Computer >> コンピューター >  >> プログラミング >> PHP

PHPのftp_raw()関数


ftp_raw()関数は、rawコマンドをFTPサーバーに送信するために使用されます。

構文

ftp_raw(con, command)

パラメータ

  • 詐欺 −FTP接続

  • コマンド −実行するコマンド

戻る

ftp_raw()関数は、サーバーの応答を文字列の配列として返します。

以下は例です-

<?php
   $ftp_server = "192.168.0.4";
   $con = ftp_connect($ftp_server) or die("Could not connect to $ftp_server");
   ftp_raw($ftp_conn, "USER david");
   ftp_raw($ftp_conn, "PASS yourpassword");
   // close
   ftp_close($con);
?>
を閉じます
  1. PHPのftp_raw()関数

    ftp_raw()関数は、rawコマンドをFTPサーバーに送信するために使用されます。 構文 ftp_raw(con, command) パラメータ 詐欺 −FTP接続 コマンド −実行するコマンド 戻る ftp_raw()関数は、サーバーの応答を文字列の配列として返します。 例 以下は例です- <?php    $ftp_server = "192.168.0.4";    $con = ftp_connect($ftp_server) or die("Could not connect to $

  2. PHPのftp_exec()関数

    ftp_exec()関数は、FTPサーバーでコマンドを実行するために使用されます。 構文 ftp_exec(con, command) パラメータ 詐欺 −FTP接続 コマンド −実行するコマンド。 戻る ftp_exec()関数は、コマンドが正常に実行された場合はTRUEを返し、それ以外の場合はFALSEを返します。 例 以下は、FTPサーバーでコマンドを実行する例です- <?php    $ftp_server="192.168.0.4";    $ftp_user="amit"; &