Display the source code of a webpage.


/ Published in: PHP
Save to your folder(s)

Want to be able to display the source code of any webpage, with line numbering? Here is a simple code snippet to do it. Just modify the url on line 2 at your convenience. Or even better, make a pretty function according to your needs.


Copy this code and paste it in your HTML
  1. // display source code
  2. $lines = file('http://google.com/');
  3. foreach ($lines as $line_num => $line) {
  4. // loop thru each line and prepend line numbers
  5. echo "Line #<b>{$line_num}</b> : " . htmlspecialchars($line) . "<br>\n";
  6. }

URL: http://perishablepress.com/code-snippets/#code-snippets_php

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.