Answers for "how to echo php info in php"

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
7

show php info

phpinfo();
Posted by: Guest on February-20-2020

Browse Popular Code Answers by Language