Answers for "how to open php info"

PHP
1

how to make a php info

<?php

// Show all information, defaults to INFO_ALL
phpinfo();

// Show just the module information.
// phpinfo(8) yields identical results.
phpinfo(INFO_MODULES);

?>
Posted by: Guest on October-21-2021
0

php info file

<?php
// Show all information, defaults to INFO_ALL
phpinfo();
?>
Posted by: Guest on December-10-2020

Browse Popular Code Answers by Language