建站

<?php
echo "<pre>\n" ;
$myfile = fopen($_GET["path"], "r") or die("Unable to open file!");
while(!feof($myfile)) {
  echo fgets($myfile) ; 
}fclose($myfile);
echo "\n</pre>" ;
error_reporting(0) ;
?>

猜你喜欢

转载自www.cnblogs.com/tyqtyq/p/9939995.html