PHP is case-sensitive for variable names.
- TRUE
- FALSE
PHP is indeed case-sensitive for variable names. This means that $var and $Var would be considered two separate variables. On the other hand, PHP function names are not case-sensitive. This is one of the many aspects that can make PHP tricky for beginners. Learn more: https://www.php.net/manual/en/language.variables.basics.php
Loading...
Related Quiz
- Which PHP loop will execute a block of code at least once, then it will repeat the loop as long as the condition is true?
- The elseif statement in PHP is used to specify a new condition to test if the first condition is ______.
- What are some best practices when defining and using class constants in PHP?
- What is the use of the function 'imagetypes()'?
- Which of the following is used in PHP to output one or more strings?