uce/site/doc/pages/ob_start.txt
2026-06-16 12:21:31 +00:00

17 lines
370 B
Plaintext

:sig
void ob_start()
:params
(none)
:see
>ob
:content
Starts a new output buffer.
All subsequent output is directed into that buffer until it is closed or collected. Every call to `ob_start()` pushes another buffer onto the output buffer stack. `ob_close()` and `ob_get_close()` destroy buffers and remove them from the stack.
:example
print("ob_start example\n");