Save PHPInfo to file (PHP)


SUBMITTED BY: scripts4you

DATE: Oct. 21, 2015, 8:55 a.m.

FORMAT: Text only

SIZE: 220 Bytes

HITS: 1858

  1. function PHPInfo2File($target_file){
  2. ob_start();
  3. phpinfo();
  4. $info = ob_get_contents();
  5. ob_end_clean();
  6. $fp = fopen($target_file, "w+");
  7. fwrite($fp, $info);
  8. fclose($fp);
  9. }

comments powered by Disqus