- Joined
- Jun 19, 2014
- Messages
- 26
- Points
- 3
There is a function in php called phpinfo(). This function prints all the configuration of your formatted php.ini file and allows us to know the current configuration of the server and for a particular domain and all additional libraries and configurations.
To obtain this information, we can create a php document with the following content.
You will obtain from the browser information similar to the following image:
To obtain this information, we can create a php document with the following content.
Code:
<?php
phpinfo ();
?>