Which of the following PHP data types can hold multiple values?

  • int
  • boolean
  • array
  • None of the above
The array data type in PHP can hold multiple values. Arrays are used to store collections of values, and they can hold elements of different data types. An array allows you to organize and access multiple values using keys or indexes. Learn more: https://www.php.net/manual/en/language.types.array.php
Add your answer
Loading...

Leave a comment

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