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, ∼2849🔥, 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 include additional claims in Azure AD v2.0 id_tokens? If you want to include additional claim...
Where to get the detailed description of the json_encode() Function in PHP? Here is the detailed des...
How To Merge Cells in a Column? If you want to merge multiple cells vertically in a row, you need to...
How To Move Uploaded Files To Permanent Directory in PHP? PHP stores uploaded files in a temporary d...