Answers for "access 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

Browse Popular Code Answers by Language