From c18e25b3384c7640b2bc4d77314fddcc90651d21 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Tue, 11 Aug 2026 12:31:06 +0900 Subject: chore(php-shim): drop the ob_start()/ob_get_clean() ports Output buffering captures whatever the PHP interpreter would echo to stdout. The shim routes no output through a buffer, so these functions could never capture anything and stayed todo!(). Record the gap in docs/known-incompatibilities.md instead. --- crates/shirabe-php-rpc/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/shirabe-php-rpc') diff --git a/crates/shirabe-php-rpc/src/lib.rs b/crates/shirabe-php-rpc/src/lib.rs index b11351e6..221c49f6 100644 --- a/crates/shirabe-php-rpc/src/lib.rs +++ b/crates/shirabe-php-rpc/src/lib.rs @@ -71,7 +71,7 @@ pub struct Diagnostics { pub ioncube_loader_iversion: i64, /// Empty when the ionCube loader is not loaded. pub ioncube_loader_version: String, - /// `phpinfo(INFO_GENERAL)` output, captured via `ob_start()`/`ob_get_clean()`. + /// `phpinfo(INFO_GENERAL)` output. pub phpinfo_general: String, /// `None` when the curl extension is not loaded. pub curl: Option, -- cgit v1.3.1-4-g156e