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, ∼2673🔥, 0💬
Popular Posts:
Where to find tutorials on Python programming language? I want to learn Python. Here is a large coll...
What is Azure API Management Developer Portal? Azure API Management Developer Portal is an Azure Web...
What Happens If One Row Has Missing Columns? What happens if one row has missing columns? Most brows...
What Happens If One Row Has Missing Columns? What happens if one row has missing columns? Most brows...
FYIcenter JSON Validator and Formatter is an online tool that checks for syntax errors of JSON text ...