Search w3schools.com:

SHARE THIS PAGE

PHP show_source() Function


PHP Misc Reference Complete PHP Misc Reference

Definition and Usage

The show_source() function outputs a file with the PHP syntax highlighted. The syntax is highlighted by using HTML tags.

The colors used for highlighting can be set in the php.ini file or with the ini_set() function.

This function returns TRUE on success, or FALSE on failure.

show_source() is an alias of highlight_file().

Syntax

show_source(filename,return)

Parameter Description
filename Required. Specifies the file to display
return Optional. If this parameter is set to TRUE, this function will return the highlighted code as a string, instead of printing it out. Default is FALSE


Tips and Notes

Note: When using this function, the entire file will be displayed - including passwords and any other sensitive information!


Example

"test.php":

<html>
<body>
<?php
show_source("test.php");
?>
</body>
</html>

The output of the code above could be:

<html>
<body>
<?php show_source("test.php");?>
</body>
</html>

and, if you select "View source" in the browser window, it will look something like this:

<html>
<body>
<span style="color: #000000">&lt;html&gt;
<br />
&lt;body&gt;
<br />
<code>
<span style="color: #0000BB">&lt;?php
<br />show_source</span>
<span style="color: #007700">(</span>
<span style="color: #DD0000">"test.php"</span>
<span style="color: #007700">);<br /></span>
<span style="color: #0000BB">?&gt;<br /></span>
&lt;/body&gt;
<br />
&lt;/html&gt;</span>
</code>
</body>
</html>


PHP Misc Reference Complete PHP Misc Reference

W3Schools Certification

W3Schools' Online Certification

The perfect solution for professionals who need to balance work, family, and career building.

More than 10 000 certificates already issued!

Get Your Certificate »

The HTML Certificate documents your knowledge of HTML.

The HTML5 Certificate documents your knowledge of advanced HTML5.

The CSS Certificate documents your knowledge of advanced CSS.

The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM.

The jQuery Certificate documents your knowledge of jQuery.

The XML Certificate documents your knowledge of XML, XML DOM and XSLT.

The ASP Certificate documents your knowledge of ASP, SQL, and ADO.

The PHP Certificate documents your knowledge of PHP and SQL (MySQL).

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]