PHP file_put_contents() 函數(shù)
PHP file_put_contents() 函數(shù)
定義和用法
file_put_contents() 函數(shù)把一個字符串寫入文件中。
該函數(shù)訪問文件時,遵循以下規(guī)則:
如果成功,該函數(shù)將返回寫入文件中的字符數(shù)。如果失敗,則返回 False。
語法
int file_put_contents ( string $filename , mixed $data [, int $flags = 0 [, resource $context ]] )
參數(shù) | 描述 |
---|---|
filename | 必需。規(guī)定要寫入數(shù)據(jù)的文件。如果文件不存在,則創(chuàng)建一個新文件。 |
data | 必需。規(guī)定要寫入文件的數(shù)據(jù)??梢允亲址?、數(shù)組或數(shù)據(jù)流。 |
flags | 可選。規(guī)定如何打開/寫入文件??赡艿闹担?ul>
|
context | 可選。規(guī)定文件句柄的環(huán)境。context 是一套可以修改流的行為的選項。 |
提示和注釋
注釋:請使用 FILE_APPEND 避免刪除文件中已存在的內(nèi)容。
實例
實例
<?php
echo file_put_contents("sites.txt","Runoob");
?>
以上實例執(zhí)行輸出結(jié)果為:
6
接下來我們向文件 sites.txt 追加內(nèi)容:
實例
<?php
$file = 'sites.txt';
$site = "\nGoogle";
// 向文件追加寫入內(nèi)容
// 使用 FILE_APPEND 標記,可以在文件末尾追加內(nèi)容
// LOCK_EX 標記可以防止多人同時寫入
file_put_contents($file, $site, FILE_APPEND | LOCK_EX);
?>
執(zhí)行成功后,打開 sites.txt 文件,內(nèi)容為:
Runoob Google
相關(guān)文章
- PHP 常量
- PHP 字符串
- PHP 超級全局變量
- PHP While 循環(huán)
- PHP 魔術(shù)常量
- PHP Secure E-mails
- PHP 過濾器
- PHP array_merge() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP end() 函數(shù)
- PHP krsort() 函數(shù)
- PHP ksort() 函數(shù)
- PHP natsort() 函數(shù)
- PHP rsort() 函數(shù)
- PHP sort() 函數(shù)
- PHP Mail 函數(shù)
- PHP 5 MySQLi 函數(shù)
- PHP PDO