Skip to content

Latest commit

 

History

History
executable file
·
12 lines (10 loc) · 317 Bytes

constant-naming.md

File metadata and controls

executable file
·
12 lines (10 loc) · 317 Bytes

PHP Naming Convention > Constant Naming

SCREAMING_SNAKE_CASE

  • Should be all uppercase letters e.g. AGE, HEIGHT
  • If the name contains multiple words, it should be separated by an underscore(_) such as DAYS_IN_MONTH
  • It may contain digits but not as the first letter
<?php
const MAX_PLAYER = 24;
?>