Skip to content

Instantly share code, notes, and snippets.

@blendax78
Created March 15, 2013 15:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blendax78/5170590 to your computer and use it in GitHub Desktop.
Save blendax78/5170590 to your computer and use it in GitHub Desktop.
Display source code of a webpage
<?php // display source code
# Example: $url = 'http://google.com';
$lines = file($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