show_source

(PHP 4, PHP 5)

show_source -- 别名 highlight_file()

说明

本函数是该函数的别名: highlight_file().


add a note add a note User Contributed Notes
Moslehi[atsign]Gmail[dot]com
17-Mar-2006 07:38
Simply locate a file that includes PHP codes and test it.

<?
show_source
("page.php");
?>

Shows (Highlites) the PHP codes in "page.php" with syntax coloured codes.
Or see the source of page on a website as html :

<?
show_source
("http://www.php.net/show_source");
?>

[Arash Moslehi]