php ftp 파일을 서버로 전송
코드 복사 코드는 다음과 같습니다:
/ / 시작
$ret = ftp_nb_get ($my_connection, "test", "README", FTP_BINARY,
filesize("test")
// 또는: $ret = ftp_nb_get ($my_connection, " test", " README",
// FTP_BINARY, FTP_AUTORESUME);
while ($ret == FTP_MOREDATA) {
// 다른 코드를 삽입할 수 있습니다
echo ".";
// 계속 전송합니다..
$ret = ftp_nb_continue ($my_connection);
}
if ($ret != FTP_FINISHED) {
echo "다운로드 오류..."; >exit(1);
}
?>
코드 복사 코드는 다음과 같습니다:
$file = 'public_html/old.txt'
// FTP 서버에 연결
$conn_id = ftp_connect(' www.jb51.net');
// 사용자 이름과 비밀번호 확인
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass)
// 지정된 파일 삭제
if (ftp_delete( $conn_id, $file)) {
echo "$file 파일이 성공적으로 삭제되었습니다.";
} else {
echo "$file 파일 삭제에 실패했습니다."
}
// FTP 연결을 닫습니다.
ftp_close($conn_id) ;
?>
코드 복사
$file = 'somefile.txt'
// FTP 서버에 연결
$conn_id = ftp_connect($ftp_server);
//사용자 이름과 비밀번호 확인 www.jb51 .net
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass)
//지정된 파일의 크기 가져오기
$res = ftp_size($conn_id, $file);
if ( $res != -1) {
echo "$file 파일 크기는 $res 바이트입니다."
} else {
echo " 원격 파일 크기 가져오기";
}
/ /FTP 연결 닫기
ftp_close($conn_id);
?>