PHP : Function Reference : Miscellaneous Functions : show_source
moslehi atsign gmail dot com
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]
edy
Show the source of the current file:
<?php
/* some code here */
show_source(__FILE__);
?>
|