PHP Data type

Source: Internet
Author: User
Tags type null

String, Integer, floating-point number, logical, array, object, NULL.

PHP string

The string is a sequence of characters, such as "Hello world!",

The string can be any text within the quotation marks, either single or double quotation marks can be used

PHP integer

Integers are numbers that have no decimals.

Integer rule:

    • Integers must have at least one number (0-9)
    • Integers cannot contain commas or spaces
    • Integers cannot have decimal points
    • Integers can be both positive and negative
    • Integers can be specified in three formats: decimal, hexadecimal (prefix 0x), or octal (prefix 0)

PHP floating-point number

Floating-point numbers are digits that have decimal or exponential form.

PHP logic

The logic is true or false.

$x =true; $y =false;

Logic is often used for conditional testing

PHP arrays

An array stores multiple values in a variable.

<?php $cars =array ("Volvo", "BMW", "SAAB"); Var_dump ($cars);? >
PHP Object

Objects are data types that store data and information about how to work with the data.

In PHP, you must explicitly declare an object.

First we must declare the class of the object. For this, we use the class keyword. A class is a structure that contains properties and methods.

We then define the data type in the object class, and then use this data type in an instance of the class:

<?phpclass car{  var $color;  function Car ($color = "green") {    $this->color = $color;  }  function What_color () {    return $this->color;  }}? >
PHP NULL Value

A special NULL value indicates that the variable has no value. Null is the only possible value for the data type NULL.

The null value indicates whether the variable is empty. Also used to differentiate between empty strings and null-valued databases.

You can empty the variable by setting the value to NULL:

<?php$x= "Hello world!"; $x =null;var_dump ($x);? >

PHP Data type

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.