Skip to content

Instantly share code, notes, and snippets.

@brianjking
Created July 16, 2015 16:11
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 brianjking/2f3ea0f94d0348d38c6c to your computer and use it in GitHub Desktop.
Save brianjking/2f3ea0f94d0348d38c6c to your computer and use it in GitHub Desktop.
Writing phpinfo to an HTML file
<?php
ob_start();
phpinfo();
$info = ob_get_contents();
ob_end_clean();
$fp = fopen("phpinfo.html", "w+");
fwrite($fp, $info);
fclose($fp);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment