set_file_buffer

Its an alias of stream_set_write_buffer() and sets write file buffering on the given stream

Example

<?php

$fp = fopen(“test.txt”, “w”);

if ($fp) {

 set_file_buffer($fp, 0);

 fwrite($fp, “PHPCodez”);

 fclose($fp);

}

?>