PHP ftp_put() 函數(shù)
PHP ftp_put() 函數(shù)

定義和用法
ftp_put() 函數(shù)上傳本地一個(gè)文件到 FTP 服務(wù)器上。
如果成功,該函數(shù)返回 TRUE。如果失敗,則返回 FALSE。
語(yǔ)法
ftp_put(ftp_connection,remote,local,mode,resume)
參數(shù) | 描述 |
---|---|
ftp_connection | 必需。規(guī)定要使用的 FTP 連接。 |
remote | 必需。規(guī)定上傳到 FTP 服務(wù)器上保存的文件。 |
local | 必需。規(guī)定要上傳的文件的路徑。 |
mode | 必需。規(guī)定傳輸模式??赡艿闹担?ul>
|
resume | 可選。規(guī)定在本地文件中的何處開(kāi)始復(fù)制。默認(rèn)是 0。 |
實(shí)例
本實(shí)例從 "source.txt" 中復(fù)制文本到 "target.txt" 中:
<?php
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"admin","ert456");
echo ftp_put($conn,"target.txt","source.txt",FTP_ASCII);
ftp_close($conn);
?>
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"admin","ert456");
echo ftp_put($conn,"target.txt","source.txt",FTP_ASCII);
ftp_close($conn);
?>
上面的代碼將輸出:
1

相關(guān)文章
- PHP Switch 語(yǔ)句
- PHP 超級(jí)全局變量
- PHP 面向?qū)ο?/a>
- PHP $_POST 變量
- PHP 錯(cuò)誤處理
- PHP array_diff_key() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_rand() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP asort() 函數(shù)
- PHP in_array() 函數(shù)
- PHP list() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP sort() 函數(shù)
- PHP uksort() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP 5 MySQLi 函數(shù)