Örnek
FTP sunucusunda bir komutun yürütülmesi için talep:
<?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);
?>
Tanımı ve Kullanımı
ftp_exec() FTP sunucusunda bir komutun yürütülmesi için işlev istekleri.
Sözdizimi
ftp_exec( ftp_connection,command );
Parametre | Açıklama |
---|---|
ftp_connection | Gereklidir. kullanmak için FTP bağlantısı belirtir |
command | Gereklidir. yürütülecek komutu belirtir |
Teknik detaylar
Geri dönüş değeri: | Komut başarıyla yürütüldü DOĞRU döndürür; YANLIŞ aksi |
---|---|
PHP Sürümü: | 4.0.3 veya sonraki |
<PHP FTP Referans