How can PHP scripts be tested to ensure that PHP is running correctly on a local server?

To test if PHP is running correctly on a local server, you can create a simple PHP script that outputs information about the PHP configuration. This script can be run in a web browser to see if PHP is working properly.

<?php
phpinfo();
?>