Voting

: max(seven, zero)?
(Example: nine)

The Note You're Voting On

gaggge at gmail dot com
20 years ago
This is a little function for highlighting bbcode-stylish PHP code from a mysql database.
(Like this: [php]<?php echo "test"; ?>[/php])

<?php
function bbcode($s)
{
$s = str_replace("]\n", "]", $s);
$match = array('#\[php\](.*?)\[\/php\]#se');
$replace = array("'<div>'.highlight_string(stripslashes('$1'), true).'</div>'");
return
preg_replace($match, $replace, $s);
}
?>

<< Back to user notes page

To Top