03-02-2008, 08:39 PM
J'était justement en train de lire ce tuto et je ne vois pas à quoi correspond matches[2] dans :
Code PHP :
<?php
include_once('geshi.php');
function couleur($matches){
if ($matches[1] == "html"){
$matches[1] = "html4strict"; }
$geshi = new GeSHi($matches[2], $matches[1]);
if ($matches[1] == "html4strict"){
return '<div id="geshi"><strong>Code HTLM:</strong><div class="code">'.$geshi->parse_code().'</div></div>';
}
else {
return '<div id="geshi"><strong>Code '.strtoupper($matches[1]).':</strong><div class="code">'.$geshi->parse_code().'</div></div>';
}
}
?>