Tools, FAQ, Tutorials:
Running a PHP Script
How To Run a PHP Script?
✍: FYIcenter.com
A standard alone PHP script can be executed directly with the PHP Command Line Interface (CLI). Write the following script in a file called hello.php:
<?php echo "Hello world!"; ?>
This script can be executed by CLI interface like this:
\php\php hello.php
You should see the "Hello world!" message printed on your screen.
2016-10-13, 1296👍, 0💬
Popular Posts:
What Is the 2017 Version of Azure API Management Service? The 2017 Version of Azure API Management a...
Where to find tutorials on Using Azure API Management Developer Portal? Here is a list of tutorials ...
Where to find tutorials on the 2017 version of API Management Services at Azure Portal? Here is a li...
How to add request body examples to my Azure API operation 2017 version to make it more user friendl...
How to detect errors occurred in the json_decode() call? You can use the following two functions to ...