PHP ftp_fget() 函數(shù)
PHP ftp_fget() 函數(shù)

定義和用法
ftp_fget() 函數(shù)從 FTP 服務(wù)器上下載一個(gè)文件并保存到本地一個(gè)已經(jīng)打開(kāi)的文件中。
如果成功,該函數(shù)返回 TRUE。如果失敗,則返回 FALSE。
語(yǔ)法
ftp_fget(ftp_connection,local,remote,mode,resume)
參數(shù) | 描述 |
---|---|
ftp_connection | 必需。規(guī)定要使用的 FTP 連接。 |
local | 必需。規(guī)定要保存內(nèi)容的本地一個(gè)已經(jīng)打開(kāi)的文件。 |
remote | 必需。規(guī)定從中復(fù)制內(nèi)容的文件的路徑。 |
mode | 必需。規(guī)定傳輸模式。可能的值:
|
resume | 可選。規(guī)定在遠(yuǎn)程文件中的何處開(kāi)始復(fù)制。默認(rèn)是 0。 |
實(shí)例
本實(shí)例從 "source.txt" 中復(fù)制文本到 "target.txt" 中:
<?php
$source = "source.txt";
$target = fopen("target.txt", "w");
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"admin","ert456");
ftp_fget($conn,$target,$source,FTP_ASCII);
ftp_close($conn);
?>
$source = "source.txt";
$target = fopen("target.txt", "w");
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"admin","ert456");
ftp_fget($conn,$target,$source,FTP_ASCII);
ftp_close($conn);
?>

相關(guān)文章
- PHP 變量
- PHP echo 和 print 語(yǔ)句
- PHP 數(shù)據(jù)類(lèi)型
- PHP 字符串
- PHP 數(shù)組
- PHP 包含文件 include 和 require 語(yǔ)句
- PHP 文件處理
- PHP Cookie
- PHP 錯(cuò)誤處理
- PHP array_intersect_assoc() 函數(shù)
- PHP array_multisort() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_uintersect_assoc() 函數(shù)
- PHP array_uintersect_uassoc() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP count() 函數(shù)
- PHP in_array() 函數(shù)
- PHP usort() 函數(shù)
- PHP 5 Filesystem 函數(shù)