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, 1884👍, 0💬
Popular Posts:
How to use the JSON to XML Conversion Tool at utilities-online.info? If you want to try the JSON to ...
How To Pad an Array with the Same Value Multiple Times in PHP? If you want to add the same value mul...
What properties and functions are supported on http.client.HTTPResponse objects? If you get an http....
Where to find tutorials on Visual Studio? I want to know How to learn Visual Studio. Here is a large...
FYIcenter JSON Validator and Formatter is an online tool that checks for syntax errors of JSON text ...