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, ∼2731🔥, 0💬
Popular Posts:
How To Read the Entire File into a Single String in PHP? If you have a file, and you want to read th...
How To Merge Cells in a Column? If you want to merge multiple cells vertically in a row, you need to...
How To Use an Array as a Queue in PHP? A queue is a simple data structure that manages data elements...
How to use the JSON to XML Conversion Tool at utilities-online.info? If you want to try the JSON to ...
dev.FYIcenter.com is a Website for software developer looking for software development technologies,...