ตัวอย่าง
ขอให้ปฏิบัติการตามคำสั่งบนเซิร์ฟเวอร์ FTP ไปนี้:
<?php
// connect and login to FTP server
$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or
die("Could not connect to $ftp_server");
$login
= ftp_login($ftp_conn, $ftp_username, $ftp_userpass);
$command = "ls-al
> somefile.txt";
// execute command
if (ftp_exec($ftp_conn,$command))
{
echo "$command executed successfully.";
}
else
{
echo "Execution of $command failed.";
}
// close connection
ftp_close($ftp_conn);
?>
ความหมายและการใช้งาน
ftp_exec() ร้องขอฟังก์ชั่นสำหรับการดำเนินการตามคำสั่งบนเซิร์ฟเวอร์ FTP
วากยสัมพันธ์
ftp_exec( ftp_connection,command );
พารามิเตอร์ | ลักษณะ |
---|---|
ftp_connection | จำเป็นต้องใช้ ระบุการเชื่อมต่อ FTP จะใช้ |
command | จำเป็นต้องใช้ ระบุคำสั่งในการดำเนินการ |
รายละเอียดทางเทคนิค
กลับค่า: | ส่งกลับค่า TRUE ถ้าคำสั่งดำเนินการเสร็จเรียบร้อยแล้ว FALSE? |
---|---|
PHP เวอร์ชัน: | 4.0.3+ |
<PHP FTP อ้างอิง