PHP 8.4.6 Released!

基本用法

示例 #1 FTP 示例

<?php
/ 建立基础连接
$ftp = ftp_connect($ftp_server);

/ 使用用户名和口令登录
$login_result = ftp_login($ftp, $ftp_user_name, $ftp_user_pass);

/ 检查是否成功
if ((!$ftp) || (!$login_result)) {
echo
"FTP connection has failed!";
echo
"Attempted to connect to $ftp_server for user $ftp_user_name";
exit;
} else {
echo
"Connected to $ftp_server, for user $ftp_user_name";
}

/ 上传文件
$upload = ftp_put($ftp, $destination_file, $source_file, FTP_BINARY);

/ 检查上传结果
if (!$upload) {
echo
"FTP upload has failed!";
} else {
echo
"Uploaded $source_file to $ftp_server as $destination_file";
}

/ 关闭 FTP 连接
ftp_close($ftp);
?>

添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
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