PHP 8.4.6 Released!

Temel kullanım

Örnek 1 - FTP örneği

<?php
/ Bağlantıyı kuralım
$bt = ftp_connect($ftp_sunucu);

/ kullanıcı adı ve parola ile oturum açalım
$bağlantı = ftp_login($bt, $ftpci, $ftpci_parolası);

/ bağlantıyı sınayalım
if ((!$bt) || (!$bağlantı)) {
echo
"FTP bağlantısı kurulamadı!";
echo
"$ftpci için $ftp_sunucu sunucusuna bağlanmaya çalışılıyordu.";
exit;
} else {
echo
"$ftpci için $ftp_sunucu sunucusuna bağlantı kuruldu.";
}

/ Dosyayı sunucuya yükleyelim
$yükleme = ftp_put($bt, $hedef, $kaynak, FTP_BINARY);

/ Duruma bakalım
if (!$yükleme) {
echo
"FTP dosya yüklemesi başarısız oldu!";
} else {
echo
"$kaynak dosyası $ftp_sunucu sunucusuna ";
echo
"$hedef dosyası olarak yüklendi.";
}

/ FTP bağlantısını kapatalım
ftp_close($bt);
?>

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant