Syntax for PHP set_file_buffer() Function
set_file_buffer(file_handle,buffer)
Code for PHP set_file_buffer() Function
<?php
$file=fopen("bb.txt","w");
$a=set_file_buffer($file,200);
if($a)
echo "buffer is set";
else
echo "buffer is not
set";
?>
Output
buffer is set
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.