After installing PHP, you can immediately start running PHP scripts without restarting the server.
- TRUE
- FALSE
After installing PHP, especially when PHP is installed as a module for a web server like Apache or Nginx, you usually need to restart the web server. This is so the server can load the PHP module into its memory space, which is necessary for processing PHP files. Learn more: https://www.php.net/manual/en/install.general.php
Loading...
Related Quiz
- The is_float() function in PHP checks if a variable is an integer.
- An abstract class in PHP OOP is a class that cannot be instantiated and is meant to be extended by other classes.
- What is the continue statement used for in PHP?
- PHP requires a web server to run PHP scripts.
- How do you define a destructor in a PHP class?