PHP ftp_put() 函數
PHP ftp_put() 函數

定義和用法
ftp_put() 函數上傳本地一個文件到 FTP 服務器上。
如果成功,該函數返回 TRUE。如果失敗,則返回 FALSE。
語法
ftp_put(ftp_connection,remote,local,mode,resume)
參數 | 描述 |
---|---|
ftp_connection | 必需。規定要使用的 FTP 連接。 |
remote | 必需。規定上傳到 FTP 服務器上保存的文件。 |
local | 必需。規定要上傳的文件的路徑。 |
mode | 必需。規定傳輸模式。可能的值:
|
resume | 可選。規定在本地文件中的何處開始復制。默認是 0。 |
實例
本實例從 "source.txt" 中復制文本到 "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

相關文章
- PHP Switch 語句
- PHP 超級全局變量
- PHP 面向對象
- PHP $_POST 變量
- PHP 錯誤處理
- PHP array_diff_key() 函數
- PHP array_intersect_ukey() 函數
- PHP array_rand() 函數
- PHP array_reduce() 函數
- PHP array_reverse() 函數
- PHP array_sum() 函數
- PHP array_udiff_uassoc() 函數
- PHP asort() 函數
- PHP in_array() 函數
- PHP list() 函數
- PHP shuffle() 函數
- PHP sort() 函數
- PHP uksort() 函數
- PHP 5 Array 函數
- PHP 5 MySQLi 函數