Skip to content

Instantly share code, notes, and snippets.

@freshsnippets
Last active October 4, 2015 05:07
Show Gist options
  • Save freshsnippets/2582774 to your computer and use it in GitHub Desktop.
Save freshsnippets/2582774 to your computer and use it in GitHub Desktop.
PHP: Display Source Code for Pages
$lines = file('http://google.com/'); // pick the url
foreach ($lines as $line_num => $line) {
// loop thru each line and prepend line numbers
echo "Line #<b>{$line_num}</b> : " . htmlspecialchars($line) . "<br>\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment