Are PHP keywords case-sensitive?

后端 未结 3 1180
挽巷
挽巷 2020-12-06 02:30

For example, is the following program meaningful, and if so what should it print?



        
3条回答
  •  Happy的楠姐
    2020-12-06 03:12

    Case sensitive (both user defined and PHP defined)

    • variables
    • constants
    • array keys
    • class properties
    • class constants

    Case insensitive (both user defined and PHP defined)

    • functions
    • class constructors
    • class methods
    • keywords and constructs (if, else, null, foreach, echo etc.)

提交回复
热议问题