En son web geliştirme öğreticiler
 

PHP ftp_raw() Function

<PHP FTP Referans

Örnek

sunucuyu FTP ve komutları yürütmek bağlan:

<?php
// connect to FTP server
$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or die("Could not connect to $ftp_server");

// the two lines below is the same as: ftp_login($ftp_conn,"john","secretpassword");
ftp_raw($ftp_conn, "USER john");
ftp_raw($ftp_conn, "PASS secretpassword");

?>

Tanımı ve Kullanımı

ftp_raw() işlevi FTP sunucusuna bir ham komutu gönderir.

Sözdizimi

ftp_raw( 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: dizelerden oluşan bir dizi olarak sunucunun yanıtını döndürür
PHP Sürümü: 5+

<PHP FTP Referans