← All docs
ob_implicit_flush() — internals
Compiler internals for ob_implicit_flush(): lowering path, type checks, and runtime helpers.
ob_implicit_flush() — internals
Where it lives
- Signature:
src/builtins/io/ob_implicit_flush.rs - Lowering:
src/codegen/lower_inst/builtins/output_buffering.rs:474 (lower_ob_implicit_flush) - Function symbol:
lower_ob_implicit_flush()
Lowering notes
- Lowers
ob_implicit_flush([$enable]): store the flag (semantically inert in - elephc — terminal writes are unbuffered syscalls) and return
truelike PHP 8.
Runtime helpers
No direct __rt_* helpers captured — the lowering is inlined or routes through another builtin.
Signature summary
function ob_implicit_flush(bool $enable = true): bool
What the type checker enforces
- Arity: takes 0–1 arguments (1 optional).
Eval interpreter (magician)
- Declaration:
crates/elephc-magician/src/interpreter/builtins/core/ob_implicit_flush.rs(eval_builtin!) - Dispatch hooks:
direct,values