In PHP, which keyword is used to define a constant?
- constant
- define
- const
- let
Constants in PHP are defined using the define function. It's not a keyword but a function used to create named constants with a specific value.
Loading...
Related Quiz
- Which of the following are ways to create a file in PHP?
- You have multiple conditions in your PHP script and you want to test each one in order. How would you do this using if, elseif, and else statements?
- How is it possible to know the number of rows returned in the result set?
- You are writing a PHP script and you need to fetch the content of a web page from a given URL. How would you do this using network functions?
- The elseif statement in PHP can be used to test multiple conditions.