You appear to be a bot. Output may be restricted
Description
Use bw_ret() to return the contents of $bwecho, leaving the global value as NULL
Usage
$string = bw_ret();
Parameters
Returns
string the contents of @global $bwecho prior to it being emptiedSource
File name: oik-bwtrace/libs/bobbfunc.phpLines:
1 to 9 of 9
function bw_ret() { global $bwecho; $bwret = $bwecho; $bwecho = NULL; //bw_trace( __FUNCTION__ ); //bw_backtrace(); //bw_trace2( $bwret ); return( $bwret ); }View on GitHub View on Trac