PHP 7.0.6 Released

show_source

(PHP 4, PHP 5, PHP 7)

show_sourceAlias of highlight_file()

Description

This function is an alias of: highlight_file().

User Contributed Notes

edy at edy-b dot de
8 years ago
Show the source of the current file:

<?php
   
/* some code here */
   
   
show_source(__FILE__);   
?>
To Top