Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 286 Bytes

File metadata and controls

26 lines (18 loc) · 286 Bytes
stage prewriting

PHP types

PHP supports 10 primitive types:

Scalar types

  • boolean
  • integer
  • float (float pointing number or double)
  • string

Compound types

  • array
  • object
  • callable
  • iterable

Special types

  • resource
  • NULL