Info.php

[Solved] Info.php | Php - Code Explorer | yomemimo.com
Question : how to make a php info

Answered by : happy-hippopotamus-27ps50bu97n9

<?php
// Show all information, defaults to INFO_ALL
phpinfo();
// Show just the module information.
// phpinfo(8) yields identical results.
phpinfo(INFO_MODULES);
?>

Source : | Last Update : Thu, 28 Oct 21

Question : php info file

Answered by : elated-eel-pe6rs9be8w6q

<?php
// Show all information, defaults to INFO_ALL
phpinfo();
?>

Source : | Last Update : Thu, 17 Dec 20

Question : show php info

Answered by : annoyed-albatross-opdgometvgl6

phpinfo();

Source : | Last Update : Thu, 27 Feb 20

Question : show phpinfo just modules

Answered by : annoyed-albatross-opdgometvgl6

phpinfo(INFO_MODULES);

Source : | Last Update : Thu, 27 Feb 20

Answers related to info.php

Code Explorer Popular Question For Php