How do I find information about PHP configuration and directives?
The steps presented in this article describe the procedure through which you can find information about the PHP configuration and directives.
phpinfo() is used to view the PHP configuration and available PHP directives.
To view this information we will create an info.php page in public_html, where we will add the lines below:
php();
?>
To view the information, we will later access the file in the browser at domainname.extension/info.php (e.g. hostico.ro/info.php).