Open In App

PHP | show_source() Function

The show_source() function is an inbuilt function in PHP which is used to return a file with the PHP syntax highlighted. The syntax is highlighted by using HTML tags.

Syntax:



show_source( $filename, $return )

Parameters: This function accepts two parameters as mentioned above and described below:

Return Value: If it is set to TRUE then it returns the highlighted code as string. It will return TRUE on success or return FALSE on failure.



Note:

Below programs illustrate the show_source() function in PHP:

Program 1: Below program save the file using file name show_source.php




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

Output:

Program 2: Below program save the file using file name source_code.php




<?php
  
// Loading XML document to $user
$user = <<<XML
<user>
    <username>Geeks123</username>
    <name>GeeksforGeeks</name>
    <phone>+91-XXXXXXXXXX</phone>
    <detail font-color="blue" font-size="24px">
        Noida, India
    </detail>
</user>
XML;
  
// Loading string as simple xml object
  
$xml = simplexml_load_string($user);
  
// Printing children element
foreach($xml->children() as $child) {
    echo "child node:" . $child . "</br>";
}
  
?>

main.php




<!DOCTYPE html>
<html>
<body>
<?php
show_source("source_code.php");
?>
</body>
</html>

Output:

Reference: https://www.php.net/manual/en/function.show-source.php


Article Tags :