fwrite函數用于向一個打開的文件中寫入數據。其基本語法如下:
fwrite ( resource $handle , string $string [, int $length ] ) : int
參數說明:
$handle
:文件資源句柄,通過fopen函數打開文件后返回的資源句柄。$string
:要寫入文件的數據。$length
:可選參數,指定要寫入的最大字節數。如果未指定,則會將整個$string寫入文件。示例:
$file = fopen("example.txt", "w");
$data = "Hello, World!";
fwrite($file, $data);
fclose($file);
上面的示例將字符串"Hello, World!"寫入了名為example.txt的文件中。