Why is this an issue?

In PHP, keywords and constants are case-insensitive, meaning they can be written in either lower case or upper case without affecting their functionality. This allows for more flexibility and ease of use when writing code.

However, it is generally recommended to follow a consistent casing convention for readability and maintainability purposes. Relevant constants are true, false and null.

Noncompliant code example

<?php ECHO 'Hello World'; ?>

Compliant solution

<?php echo 'Hello World'; ?>

Resources

Documentation