You appear to be a bot. Output may be restricted
Description
Simple function to syntax hilight PHP sourcePossibly redundant?
Usage
oikai_highlight_source( $sources );
Parameters
- $sources
- ( mixed ) required –
Returns
voidSource
File name: oik-shortcodes/shortcodes/oik-api-importer.phpLines:
1 to 7 of 7
function oikai_highlight_source( $sources ) { $content = "<?php\n"; $content .= implode( "", $sources ); stag( "pre" ); e( highlight_string( $content, true ) ); etag( "pre" ); }View on GitHub