PHP fwrite() 函數
PHP fwrite() 函數

定義和用法
fwrite() 函數將內容寫入一個打開的文件中。
函數會在到達指定長度或讀到文件末尾(EOF)時(以先到者為準),停止運行。
如果函數成功執行,則返回寫入的字節數。如果失敗,則返回 FALSE。
語法
fwrite(file,string,length)
參數 | 描述 |
---|---|
file | 必需。規定要寫入的打開文件。 |
string | 必需。規定要寫入打開文件的字符串。 |
length | 可選。規定要寫入的最大字節數。 |
提示和注釋
提示:該函數是二進制安全的。(意思是二進制數據(如圖像)和字符數據都可以使用此函數寫入。)
實例
<?php
$file = fopen("test.txt","w");
echo fwrite($file,"Hello World. Testing!");
fclose($file);
?>
$file = fopen("test.txt","w");
echo fwrite($file,"Hello World. Testing!");
fclose($file);
?>
上面的代碼將輸出:
21

相關文章
- PHP 變量
- PHP 函數
- PHP 面向對象
- PHP 過濾器
- PHP JSON
- PHP array() 函數
- PHP array_diff_key() 函數
- PHP array_diff_uassoc() 函數
- PHP array_intersect_key() 函數
- PHP array_intersect_ukey() 函數
- PHP array_rand() 函數
- PHP array_reduce() 函數
- PHP array_walk() 函數
- PHP compact() 函數
- PHP count() 函數
- PHP in_array() 函數
- PHP ksort() 函數
- PHP 5 Calendar 函數
- PHP cURL 函數
- PHP 5 Filesystem 函數