[PHP-users 15919]ftp_execについて
Take
office @ j-ken.com
2003年 6月 13日 (金) 10:37:45 JST
こんにちは、たけです。
環境
PHP4.3.2
OS RedHat7.3
サーバーAからサーバーBのプログラムを実行したいために、
マニュアル(http://de3.php.net/manual/ja/function.ftp-exec.php)
にあるftp_exec関数を利用してみたのですが、
実行されずに、
PHP Warning: ftp_exec(): 'SITE EXEC' not understood.
とエラーになってしまいます。
実行したソースは
マニュアルにサンプルプログラムで下記のプログラム試したのですが、
---------------------------------------------------
Connected to server myserver.tld.
Logged in as user myusername.
Output from executing 'ls -l'
There is no output from this command or it failed.
------------------------------------------------------
となり実行されません。
ftp_execを利用されている方いらっしゃいますでしょうか?
お解かりになる方いましたらご教授お願いします。
マニュアルのサンプルソースです。
<?PHP
$FTP_SERVER = 'myserver.tld';
$FTP_USER_NAME = 'myusername';
$FTP_USER_PASS = 'mypassword';
$FTP_COMMAND = 'ls -l';
// Try to connect
$fc = ftp_connect($FTP_SERVER);
if($fc) {
print("Connected to server $FTP_SERVER.\n");
// Login
if(! @ftp_login($fc, $FTP_USER_NAME, $FTP_USER_PASS)) {
print("Can't logged in as user $FTP_USER_NAME.\n");
exit;
} else {
print("Logged in as user $FTP_USER_NAME.\n");
};
// Exec command
print("\nOutput from executing '$FTP_COMMAND'\n\n");
$sR = nl2br(@ftp_exec($fc, $FTP_COMMAND));
if($sR) {
print($sR);
} else {
print("There is no output from this command or it failed.\n");
};
// Close connection
ftp_quit($fc);
print("\nConnection closed.\n");
} else {
print("Can't connected to server $FTP_SERVER.\n");
};
?>
PHP-users メーリングリストの案内