PHP supports two types of numbers: integers and ______.

  • Float
  • Double
  • Decimal
  • Float
PHP supports two types of numbers: integers and floats. Integers represent whole numbers without decimal points, while floats, also known as floating-point numbers or doubles, represent real numbers with decimal points. These two number types provide different representations for different kinds of numeric data in PHP. Learn more: https://www.php.net/manual/en/language.types.integer.php https://www.php.net/manual/en/language.types.float.php
Add your answer
Loading...

Leave a comment

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