<?php
// variable initialization
$command = 'ls -la > file.txt';
// set up basic connection
$conn_id = ftp_connect('192.168.1.2');
// login with username and password
$login_result = ftp_login($conn_id, 'root', '123456');
// execute command
if (ftp_exec($conn_id, $command)) {
echo "$command executed successfully\n";
} else {
echo "could not execute $command\n";
}
// close the connection
ftp_close($conn_id);
?>
Code
Warning: ftp_exec() [function.ftp-exec]: 'SITE EXEC ls -la > file.txt': command not understood. in C:\AppServ\www\test\Upload\untitled.php on line 13
could not execute ls -la > file.txt
ผมลองเขียนตามโค๊ดข้างบนทดลองรันก็เกิด error อย่างที่แสดงครับทั้งที่เปลี่ยนคอมมานด์แบบอื่นก็เหมือนเดิม ส่วน file.txt ลองเปลี่ยนใช้คำสั่งพวก cd,dir ก็เหมือนเดิมไม่รู้ว่าต้องไปปรับแต่งตรงไหนครับใช้windows xp ครับ