You appear to be a bot. Output may be restricted
Description
Return the trace record count if requiredSometimes, when we want to compare trace output it helps if we eliminate the trace counter from the trace output
Usage
$string = bw_trace_count( $count );
Parameters
- $count
- ( mixed ) required –
Returns
string trace record count, if requiredSource
File name: oik-bwtrace/includes/bwtrace.phpLines:
1 to 9 of 9
function bw_trace_count( $count ) { global $bw_include_trace_count; $ret = null; if ( $bw_include_trace_count ) { $ret = $count; $ret .= " "; } return( $ret ) ; }View on GitHub View on Trac