Home > Article > Backend Development > How to convert data types in PHP
The method of data type conversion in PHP: first add the target type enclosed in parentheses before the variable to be converted; then use three specific types of conversion functions [intval(), floatval(), strval ()]; Finally, you can use the general type conversion function [settype(mixed var)].
Data type conversion method in PHP:
1. Add parentheses before the variable to be converted Enclosed target type
2. Use three specific type conversion functions, intval(), floatval(), strval()
3. Use the general type conversion function settype(mixed var ,string type)
The first conversion method: (int) (bool) (float) (string) (array) (object)
The code is as follows:
<?php $num1=3.14; $num2=(int)$num1; var_dump($num1); //输出float(3.14) var_dump($num2); //输出int(3) ?>
The second conversion method: intval() floatval() strval()
The code is as follows:
<?php $str="123.9abc"; $int=intval($str); //转换后数值:123 $float=floatval($str); //转换后数值:123.9 $str=strval($float); //转换后字符串:"123.9" ?> 第三种转换方式: settype();
The code is as follows:
<?php $num4=12.8; $flg=settype($num4,"int"); var_dump($flg); //输出bool(true) var_dump($num4); //输出int(12) ?>
If you want to know more about programming learning, please pay attention to the php training column!
The above is the detailed content of How to convert data types in PHP. For more information, please follow other related articles on the PHP Chinese website!