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
Called by
1 to 15 of 20
- ag() –
- ahref() –
- br() – Produce a break tag with optional text to follow
- bwt() – Output some translated text
- BW_::br() – Produce a break tag with optional text to follow
- bw_gmap_infowindow() –
- bw_gmap_marker() – Set the Google map marker
- bw_gmap_markers() – Insert multiple markers
- bw_googlemap_v3() – Display a Google Map using Google Maps JavaScript API V3
- e() – Outputs some translated / non-translatable text
- ea() –
- ediv() – End a div
- eol() – End an ordered list
- ep() – End a paragraph (p) tag
- etag() – Output an end tag
Invoked by
Calls
1 to 2 of 2
Call hooks
API Letters:
