Home > Article > Backend Development > How to test if there is no response on php installation
Method to test whether PHP installation is successful:
1. Create a file named phpinfo.php in the PHP file under the PHP installation path. The content of the file is:
<? phpinfo(); ?>
2. Save the file, and then enter http://localhost/phpinfo.php in IE. If the installation is successful, you can see the PHPINFO interface diagram, otherwise you will not see anything
Related recommendations: php tutorial
The above is the detailed content of How to test if there is no response on php installation. For more information, please follow other related articles on the PHP Chinese website!