Listing du fichier litfic.php avec syntaxhighlighter
<?php echo"<?xml version='1.0' encoding='ISO-8859-1' ?>\n" ; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr"> <head> <title> Exemple de lecture d'un fichier en PHP </title> </head> <body background="beige.jpg"> <p> </p> <h1>Exemple de lecture d'un fichier en PHP</h1> <h1>Lecture et affichage "tel quel" du fichier <a href="brut.txt">brut.txt</a></h1> <blockquote> <pre> <?php $fh = fopen("brut.txt","r") ; $nbl = 0 ; while (!feof ($fh)) { $lig = fgets($fh, 4096) ; if (strlen($lig)>0) { $nbl++ ; echo "$nbl : $lig\n" ; } ; # fin si } ; # fin tant que fclose($fh) ; ?> </pre> <!--- ================ --> <!--- ================ --> <p> </p> <p> <a href="http://www.info.univ-angers.fr/pub/gh/"><img src="return.gif" alt="retour gH" /></a> Retour à la page principale de <font color="#008800">(gH)</font> </p> <p> </p> </blockquote> </body> </html>La coloration syntaxique est réalisée par : SyntaxHighlighter.
Si vous préférez, vous pouvez utiliser celle de geshi ou même celle construite autour de la fonction highlight_file.
Retour à la page principale de (gH)