aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-php-shim/src/output.rs
blob: d4d832007e0625e2feb1e51e76a240d148912b27 (plain)
1
2
3
4
5
6
7
8
9
// PHP output buffering captures everything the interpreter would echo to stdout. The shim has no
// general echo-to-buffer routing, so a buffer here would silently capture nothing.
pub fn ob_start() -> bool {
    todo!()
}

pub fn ob_get_clean() -> Option<String> {
    todo!()
}