En son web geliştirme öğreticiler
 

PHP ftp_set_option() Function

<PHP FTP Referans

Örnek

ağ işlemleri için ayarlama zaman aşımı:

<?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);

// set network operation timeout to 120 seconds
echo ftp_set_option($ftp_conn,FTP_TIMEOUT_SEC,120);

// close connection
ftp_close($ftp_conn);
?>

Tanımı ve Kullanımı

ftp_set_option() işlevi, geçerli FTP bağlantısının çalışma süresi seçeneklerini ayarlar.

Sözdizimi

ftp_set_option( ftp_connection,option,value );

Parametre Açıklama
ftp_connection Gereklidir. kullanmak için FTP bağlantısı belirtir
option Gereklidir. ayarlamak için çalışma zamanı seçeneği belirtir. Olası değerler:
  • FTP_TIMEOUT_SEC
  • FTP_AUTOSEEK
value Gereklidir. Opsiyon parametresinin değerini belirtir

Teknik detaylar

Geri dönüş değeri: Seçenek belirleyebilir veya değilse YANLIŞ olabilir DOĞRU döndürür (a warning message is also thrown)
PHP Sürümü: 4.2+

<PHP FTP Referans