Exemple #1
0
   <td bgcolor=#ffffff>
   <br>
   <br>
   <?php 
if ($source) {
    highlight_string(implode('', file(__FILE__)));
    exit;
}
?>
   <strong>Loading properties file from :</strong> ./config.conf
   <br>
   <br>
   Display <strong>config.conf</strong> content :
   <dl><dd>
   <?php 
$reader = new FileReader('config.conf');
if ($reader->ready()) {
    while (($line = $reader->read()) != '') {
        if ($line == "\n" || $line == "\r\n") {
            print "<br>\n";
        } else {
            print htmlentities($line);
        }
    }
}
?>
   </dl>
   </td>
</tr>
</table>