It sets write file buffering on the given stream
Example
<?php
$fp = fopen(“test.txt”, “w”);
if ($fp) {
stream_set_write_buffer($fp, 0);
fwrite($fp, “PHPCodez”);
fclose($fp);
}
?>
It sets write file buffering on the given stream
Example
<?php
$fp = fopen(“test.txt”, “w”);
if ($fp) {
stream_set_write_buffer($fp, 0);
fwrite($fp, “PHPCodez”);
fclose($fp);
}
?>