Answers

Question and Answer:

  Home  PHP Developer

⟩ How you can Run a PHP Script?

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:

phpphp hello.php

You should see the "Hello world!" message printed on your screen.

 147 views

More Questions for you: