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, ∼2812🔥, 0💬
Popular Posts:
Where to find EPUB Sample Files? Here is a list of EPUB sample files collected by FYIcenter.com team...
How to use the "find-and-replace" Policy Statement for an Azure API service operation? The "find-and...
How To Remove Slashes on Submitted Input Values in PHP? By default, when input values are submitted ...
How to read Atom validation errors at w3.org? If your Atom feed has errors, the Atom validator at w3...
Where to get the detailed description of the JSON.stringify() Function in JavaScript? Here is the de...