php 显示网页源码

 

  
  
  
  
  1. <?php  
  2. // display source code   
  3. $lines = file('http://www.hongniang.com/');   
  4.  
  5. foreach ($lines as $line_num => $line) {   
  6.     // loop thru each line and prepend line numbers   
  7.     echo "Line #<b>{$line_num}</b> : " . htmlspecialchars($line) . "<br>\n";   

 

你可能感兴趣的:(源码,PHP,显示网页源码)