Home Backend Development PHP Tutorial 浅析php数据类型转换_PHP

浅析php数据类型转换_PHP

Jun 01, 2016 am 11:57 AM
Data type conversion

PHP 在变量定义中不需要(或不支持)明确的类型定义;变量类型是根据使用该变量的上下文所决定的。也就是说,如果把一个字符串值赋给变量 var,var 就成了一个字符串。如果又把一个整型值赋给 var,那它就成了一个整数。

PHP 的自动类型转换的一个例子是加号“+”。如果任何一个操作数是浮点数,则所有的操作数都被当成浮点数,结果也是浮点数。否则操作数会被解释为整数,结果也是整数。注意这并没有改变这些操作数本身的类型;改变的仅是这些操作数如何被求值以及表达式本身的类型。 

类型强制转换
允许的强制转换有:

•(int), (integer) - 转换为 整型(integer)
•(bool), (boolean) - 转换为 布尔型(boolean)
•(float), (double), (real) - 转换为 浮点型(float)
•(string) - 转换为 字符串(string)
•(binary) - 转换为二进制 字符串(string) (PHP 6)
•(array) - 转换为 数组(array)
•(object) - 转换为 对象(object)
•(unset) - 转换为 NULL (PHP 5)
(binary) 转换会在结果前面加上前缀'b',PHP 5.2.1 新增。

注意在括号内允许有空格和制表符

将 字符串(string)文字和变量转换为二进制 字符串(string):

复制代码 代码如下:
$binary = (binary)$string;
$binary = b"binary string";
?>

如果要改变一个变量的类型,参见 settype();

settype — 设置变量的类型

bool settype ( mixed $var , string $type )
将变量 var 的类型设置成 type。

type 的可能值为:

•“boolean” (或为“bool”,从 PHP 4.2.0 起)
•“integer” (或为“int”,从 PHP 4.2.0 起)
•“float” (只在 PHP 4.2.0 之后可以使用,对于旧版本中使用的“double”现已停用)
•“string”
•“array”
•“object”
•“null” (从 PHP 4.2.0 起)
成功时返回 TRUE, 或者在失败时返回 FALSE.

 intval() , floatval() , strval() , 这三个函数也可转换

下面主要分享一下PHP数据类型转换的知识。

PHP的数据类型转换属于强制转换,允许转换的PHP数据类型有:

(int)、(integer):转换成整形
(float)、(double)、(real):转换成浮点型
(string):转换成字符串
(bool)、(boolean):转换成布尔类型
(array):转换成数组
(object):转换成对象

PHP数据类型有三种转换方式:

(1)在要转换的变量之前加上用括号括起来的目标类型,例如:

(int)  (bool)  (float)  (string)  (array) (object) 下面通过实例说明:

复制代码 代码如下:
$num1=3.14;
$num2=(int)$num1; //强制转换为int类型
var_dump($num1); //输出float(3.14)
var_dump($num2); //输出int(3)

(2)使用3个具体类型的转换函数,intval()、floatval()、strval() ,实例如下:

复制代码 代码如下:
$str="123.9abc";
$int=intval($str); //转换后数值:123
$float=floatval($str); //转换后数值:123.9
$str=strval($float); //转换后字符串:"123.9"

(3)使用通用类型转换函数settype(mixed var,string type) ,具体实例如下:

复制代码 代码如下:
$num4=12.8;
$flg=settype($num4,"int");
var_dump($flg); //输出bool(true)
var_dump($num4); //输出int(12)

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 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks 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)

How to use v-model.number to implement data type conversion of input boxes in Vue How to use v-model.number to implement data type conversion of input boxes in Vue Jun 11, 2023 am 08:54 AM

In Vue, v-model is an important instruction used to implement two-way binding. It allows us to easily synchronize user input to Vue's data attribute. But in some cases, we need to convert the data, such as converting the string type input by the user into a numeric type. In this case, we need to use the .number modifier of v-model to achieve this. Basic usage of v-model.number v-model.number is a modification of v-model

How to use CONVERT function in MySQL for data type conversion How to use CONVERT function in MySQL for data type conversion Jul 12, 2023 pm 01:57 PM

How to use the CONVERT function in MySQL to convert data types. In the MySQL database, the CONVERT function is a very practical function that can be used to convert data types. By using CONVERT function, we can convert one data type to another data type, which is very useful when dealing with data of different data types. This article will explain how to use the CONVERT function for data type conversion and provide some practical code examples. 1. Requirements for data type conversion

How to implement data type conversion function in TypeScript using MySQL How to implement data type conversion function in TypeScript using MySQL Jul 29, 2023 pm 02:17 PM

How to implement data type conversion function in TypeScript using MySQL Introduction: Data type conversion is a very common requirement when developing web applications. When processing data stored in a database, especially when using MySQL as the back-end database, we often need to convert the data in the query results to the type we require. This article will introduce how to use MySQL to implement data type conversion in TypeScript and provide code examples. 1. Preparation: Starting

Research on solutions to data type conversion problems encountered in development using MongoDB technology Research on solutions to data type conversion problems encountered in development using MongoDB technology Oct 08, 2023 am 09:53 AM

Research on solutions to data type conversion problems encountered in development using MongoDB technology Abstract: When using MongoDB for data development, conversion problems between data types are often encountered. This article will explore common data type conversion problems during the development process and provide corresponding solutions. This article will combine code examples to introduce how to use MongoDB's built-in functions and operators to handle data type conversion. Introduction In the data development process, data type conversion is a common and important issue. different data

PHP8 data type conversion: methods and case sharing to improve conversion efficiency PHP8 data type conversion: methods and case sharing to improve conversion efficiency Jan 05, 2024 am 09:01 AM

PHP8 data type conversion: efficient conversion methods and case sharing Introduction: Data type conversion is a very common operation in programming, especially in scenarios such as processing user input, data storage and output. In PHP8, data type conversion operations are more efficient and flexible. This article will introduce commonly used data type conversion methods in PHP8, and demonstrate its practical application through specific code examples. Basic data type conversion 1.1 String to integer conversion In PHP8, you can use (int), intval(),

Sharing of data type conversion methods in MySQL Sharing of data type conversion methods in MySQL Jun 15, 2023 pm 08:51 PM

MySQL is currently a widely used open source relational database. It supports a variety of data types, including integers, strings, date and time, etc. In practical applications, we often need to convert different data types to meet various needs. This article will share the data type conversion methods in MySQL, including implicit conversion and explicit conversion. 1. Implicit conversion Most data types in MySQL can be implicitly converted, that is, they are automatically converted to the appropriate type during operation. Let's demonstrate it through an example: convert date type number

Java Error: Wrong Data Type, How to Fix and Avoid Java Error: Wrong Data Type, How to Fix and Avoid Jun 25, 2023 am 09:28 AM

With the widespread use of Java, developers often encounter some common errors, one of which is "wrong data type (Typemismatch error)". This error can occur when a variable is assigned, a method parameter is passed, or a function return value does not conform to the expected data type. This article will introduce wrong data types in Java and how to solve and avoid such errors. 1. Wrong data type In Java, each variable has a specific data type, such as integer type int and floating point type.

PHP8 Data Type Conversion: Quick Guide and FAQs PHP8 Data Type Conversion: Quick Guide and FAQs Jan 05, 2024 pm 06:11 PM

PHP8 Data Type Conversion: A Concise Guide and FAQ Overview: In PHP development, we often need to convert between data types. PHP8 provides us with many convenient data type conversion methods, which can easily convert between different data types and process data effectively. This article will provide you with a concise guide and FAQ, covering commonly used data type conversion methods and sample code in PHP8. Converting strings to integers When processing user input, database queries, etc., we often need to convert characters

See all articles