PHP set_file_buffer() 函數(shù)
PHP set_file_buffer() 函數(shù)

定義和用法
set_file_buffer() 函數(shù)設(shè)置打開文件的緩沖大小。
使用 fwrite() 函數(shù)輸出結(jié)果,緩沖的大小通常為 8K。因此,如果要將兩個進(jìn)程寫入同一個文件,那么每個文件一次最多只能寫進(jìn) 8K 大小,且允許其他進(jìn)程寫入。如果 buffer 為 0,那么將不對寫入操作進(jìn)行緩沖(這意味著:只有在第一個寫入進(jìn)程全部完成之后,才能允許其他進(jìn)程寫入)。
如果成功,該函數(shù)返回 0,否則返回 EOF。
語法
set_file_buffer(file,buffer)
參數(shù) | 描述 |
---|---|
file | 必需。規(guī)定打開的文件。 |
buffer | 必需。規(guī)定緩沖大小,以字節(jié)計。 |
提示和注釋
提示:該函數(shù)是 stream_set_write_buffer() 的別名。
實(shí)例
創(chuàng)建無緩沖的流:
<?php
$file = fopen("test.txt","w");
if ($file)
{
set_file_buffer($file,0);
fwrite($file,"Hello World. Testing!");
fclose($file);
}
?>
$file = fopen("test.txt","w");
if ($file)
{
set_file_buffer($file,0);
fwrite($file,"Hello World. Testing!");
fclose($file);
}
?>

相關(guān)文章
- PHP 數(shù)據(jù)類型
- PHP Switch 語句
- PHP 面向?qū)ο?/a>
- PHP 多維數(shù)組
- PHP 包含文件 include 和 require 語句
- PHP array_diff_uassoc() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_keys() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_replace_recursive() 函數(shù)
- PHP each() 函數(shù)
- PHP krsort() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP next() 函數(shù)
- PHP sort() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP HTTP 函數(shù)
- PHP Libxml 函數(shù)