You appear to be a bot. Output may be restricted
Description
Return a start tag if the class is not null
Usage
nullretstag( $tag, $class );
Parameters
- $tag
- ( mixed ) required –
- $class
- ( mixed ) optional –
Returns
voidSource
File name: oik-bwtrace/libs/bobbfunc.phpLines:
1 to 6 of 6
function nullretstag( $tag, $class=NULL ) { $ret = ''; if ( $class <> NULL ) $ret = retstag( $tag, $class ); return( $ret ); }View on GitHub View on Trac