You appear to be a bot. Output may be restricted
Description
bw API partial equivalent of PHP's output bufferingNote: This isn't really an output buffer Use bw_push() and bw_pop() if you need to stack buffers during nested processing.
Usage
bw_echo( $string );
Parameters
- $string
- ( mixed ) required –
Returns
voidTO DO
Confirm it's sensible to cast to a string on every call.Source
File name: oik-bwtrace/libs/bobbfunc.phpLines:
1 to 10 of 10
function bw_echo( $string ) { global $bwecho, $bwechos; if ( is_object( $string ) ) { bw_trace2(); bw_backtrace(); $string = print_r( $string, true ); } $bwecho .= (string) $string; $bwechos++; }View on GitHub View on Trac