Which of the following are valid data types in PHP?

  • int
  • boolean
  • float
  • All of the above
All of the given options are valid data types in PHP. PHP supports various data types, including integer (int), boolean, float, string, array, object, resource, and null. These data types are used for storing and manipulating different kinds of data in PHP scripts. Learn more: https://www.php.net/manual/en/language.types.php
Add your answer
Loading...

Leave a comment

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