You appear to be a bot. Output may be restricted
Description
Output an HTML opening tagThe tag is written to the internal buffer
Usage
stag( $tag, $class, $id, $extra );
Parameters
- $tag
- ( string ) required – the HTML tag. e.g. span
- $class
- ( string ) optional – CSS classes
- $id
- ( string ) optional – unique ID
- $extra
- ( string ) optional – additional fields formatted using kv()
Returns
voidSource
File name: oik-bwtrace/libs/bobbfunc.phpLines:
1 to 3 of 3
function stag( $tag, $class=NULL, $id=NULL, $extra=NULL ) { bw_echo( retstag( $tag, $class, $id, $extra )); }View on GitHub View on Trac