The ______ function can be used in PHP to check the installed version of PHP.
- version()
- get_version()
- php_version()
- phpinfo()
The phpinfo() function can be used to check the installed version of PHP, among many other things. When this function is called, it displays a large amount of information about the current state of PHP, including details about PHP compilation options and extensions, the PHP version, server information and environment, etc. Learn more: https://www.php.net/manual/en/function.phpinfo.php
Loading...
Related Quiz
- The filter_list() function is used to get the list of all supported filters in PHP.
- A static method in PHP can be called without creating an instance of the class.
- The is_numeric() function in PHP checks if a variable is a(n) ______.
- What are some common uses of the fwrite() function in PHP?
- What is the continue statement used for in PHP?