Which of the following data types in PHP is not scalar?

  • int
  • string
  • array
  • boolean
The non-scalar data type in PHP is an array. Arrays can hold multiple values and are not considered scalar because they are collections of values, not single values. Scalars include integers, strings, and booleans.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *