Table of Contents
   1.1.1 boolean类型
    1.1.2 字符串类型(string)
    1.1.3 整型 integer
    1.1.4 浮点型
Home Backend Development PHP Tutorial 小胖学PHP总结1-PHP的数据类型

小胖学PHP总结1-PHP的数据类型

Jun 23, 2016 pm 01:31 PM

      PHP一共支持8种原始类型,包括4中标量类型,即:boolean(布尔型)、integer(整形)、float/double(浮点型)和string(字符串型);两种复合类型,即:array(数组)和object(对象);两种特殊类型,即:resource(资源)与NULL。

1.1 标量数据类型

   1.1.1 boolean类型

      通常布尔类型都是应用在条件或者循环语句的表达式中,下面在if条件语句中判断变量$r中的值是否为true,然后输出各自的信息。

<?php //输出bool类型和字符串类型$r = true;if($r==true)    echo "这是真的\n";else    echo "这是假的\n";?>
Copy after login
          注意:在PHP中不是只有false值才是假,在一些特殊情况下boolean值也被认为是false,这些特殊情况为:0、0.0、"0"、空白字符串("")、只声明没有赋值的数组等。

      说明:美元符号$是变量的标示符,所有变量都是以$符开头的,无论是声明变量,还是调用变量,都应该使用$符号。

    1.1.2 字符串类型(string)

      在PHP中,有3种定义字符串的方式,分别为单引号(')、双引号(")和界定符(";?>         如果需要对转椅字符使用,使用单引号时只对单引号“'”进行转义即可,使用双引号的时候,就有很多需要注意转义的了,通常使用反斜杠\进行转义。

    1.1.3 整型 integer

      整型就不用多说了,看代码:

<?php //输出整形$str1 = 1234567890;$str2 = 0x1234567890;$str3 = 01234567890;$str4 = 01234567;echo "数字 1234567890 不同进制的输出结果:<p>";echo "十进制的结果为:$str1<br>";echo "十六进制的结果为:$str2<br>";echo "八进制的结果为:";if($str3 == $str4){    echo '&str3=&str4='.$str3;}else{    echo '$str3 != &str4';}?>
Copy after login

    1.1.4 浮点型

      浮点数据类型可以用来存储数字,也可以保存小数,在PHP4.0以前的版本中,浮点型的标示为double,也叫做双精度浮点数,两者没有却别。浮点数有两种书写格式,一中是标准的格式:3.1415;还有一中是科学记数法格式:3.58E1。

<?php //输出浮点型echo '<p>';echo '圆周率的3中书写方式:<p>';echo '第一种:pi()='.pi().'</p><p>';echo '第二种:3.1415926='. 3.1415926.'</p><p>';echo '第三钟:3145926E-11 = '. 314159265359E-11.'</p><p>';?></p>
Copy after login


未完待续。。。 



版权声明:本文为博主原创文章,未经博主允许不得转载。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

HTTP Method Verification in Laravel HTTP Method Verification in Laravel Mar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

Discover File Downloads in Laravel with Storage::download Discover File Downloads in Laravel with Storage::download Mar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

See all articles