vervanger-highlightfile
Gesponsorde koppelingen
PHP script bestanden
ALS FUNCTIE
Code (php)
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
<?
function show_file($filename) {
$file = implode ('', file ($filename));
highlight_string($file);
}
// Voorbeeld gebruik
// bestand.php is het bestand waarvan de bron weergegeven zal worden
show_file("bestand.php");
?>
function show_file($filename) {
$file = implode ('', file ($filename));
highlight_string($file);
}
// Voorbeeld gebruik
// bestand.php is het bestand waarvan de bron weergegeven zal worden
show_file("bestand.php");
?>
HET SCRIPT
Code (php)
1
2
3
4
5
6
2
3
4
5
6
<?
// De bron van bestand.php zal weergegeven worden
$file = "bestand.php";
$file = implode ('', file($filename));
highlight_string($file);
?>
// De bron van bestand.php zal weergegeven worden
$file = "bestand.php";
$file = implode ('', file($filename));
highlight_string($file);
?>