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, ∼3318🔥, 0💬
Popular Posts:
How to run CMD Commands in Dockerfile to change Windows Docker images? When building a new Windows i...
How to use the "@(...)" expression in Azure API Policy? The "@(...)" expression in Azure API Policy ...
How to run CMD Commands in Dockerfile to change Windows Docker images? When building a new Windows i...
What is EPUB 2.0 Metadata "dc:creator" and "dc:contributor" elements? EPUB 2.0 Metadata "dc:creator"...
Where to find tutorials on Microsoft Azure services? Here is a large collection of tutorials to answ...