Had a bit of a problem with a perl script not running, probably due to server maintenance or upgrading. Of course, because the perl interpreter was not available there was no informative message available and the user left hanging.
How would php handle this situation? If a user requests a php page and php for whatever reason is not available presumably the web server would still deliver the page, but take no action on the php code. What approach would ensure that sensitive code was not visible to the user, and how to inform the user that php is temporarily offline and to try again a bit later? Is this ever a concern in the php world?