小胖学PHP总结1-PHP的数据类型
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";?>
说明:美元符号$是变量的标示符,所有变量都是以$符开头的,无论是声明变量,还是调用变量,都应该使用$符号。
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';}?>
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>
版权声明:本文为博主原创文章,未经博主允许不得转载。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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-

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.

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' =>

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 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

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

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

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:
