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
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *