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.
⇒ Understanding PHP String Literals and Operations
⇐ PHP Configuration Setting File
2016-10-13, ∼3075🔥, 0💬
Popular Posts:
How To Merge Cells in a Column? If you want to merge multiple cells vertically in a row, you need to...
How to use the "set-body" Policy Statement for an Azure API service operation? The "set-body" Policy...
How to build a test service operation to dump everything from the "context.Request" object in the re...
How To Use an Array as a Queue in PHP? A queue is a simple data structure that manages data elements...
How to add request body examples to my Azure API operation to make it more user friendly? If you hav...