PHP Is Case Sensitive
PHP Is case Sensitive:
Yeah it is true that PHP is a case sensitive language. Try out following example:
<html> <head> </head> <body> <?php $capital = 67; print("Variable capital is $capital <br>"); print("Variable CaPiTaL is $CaPiTaL <br>"); ?> </body> </html>
This will produce following result:
Variable capital is 67 Variable CaPiTaL is
PHP Is Case Sensitive
Reviewed by Rajat Jha
on
19:38:00
Rating:
No comments: