You appear to be a bot. Output may be restricted
Description
Return a non null string following the separator or null
Usage
$null = bw_append( $value, $sep );
Parameters
- $value
- ( string ) optional – if null we return null
- $sep
- ( string ) optional default: – separating string
Returns
null or $sep followed immediately by $valueSource
File name: oik-bwtrace/libs/bobbfunc.phpLines:
1 to 5 of 5
function bw_append( $value=null, $sep=" " ) { if ( $value ) $value = $sep . $value; return $value; }View on GitHub View on Trac