PHP fputs() 函數
PHP fputs() 函數

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

相關文章
- PHP 語法
- PHP Switch 語句
- PHP 數組排序
- PHP While 循環
- PHP 面向對象
- PHP $_POST 變量
- PHP 包含文件 include 和 require 語句
- PHP array_combine() 函數
- PHP array_diff_ukey() 函數
- PHP array_fill_keys() 函數
- PHP array_intersect_key() 函數
- PHP array_intersect_uassoc() 函數
- PHP array_key_first() 函數
- PHP natsort() 函數
- PHP usort() 函數
- PHP 5 Array 函數
- PHP 5 Calendar 函數
- PHP cURL 函數
- PHP HTTP 函數
- PHP 雜項 函數