Home  >  Article  >  Backend Development  >  PHP data type conversion (character to number, number to character)

PHP data type conversion (character to number, number to character)

不言
不言Original
2018-04-27 10:22:0126270browse

This article mainly introduces PHP data type conversion (character to number, number to character), which has a certain reference value. Now I share it with you. Friends in need can refer to it

PHP data Type conversion is a forced conversion. The PHP data types that are allowed to be converted are:

● (int), (integer): converted to integer

● (float), (double), (real) : Convert to floating point type

● (string): Convert to string

● (bool), (boolean): Convert to Boolean type

● (array) : Convert to array

● (object): Convert to object

There are three conversion methods for PHP data types:

● Add parentheses before the variable to be converted. The target type is

● Use three specific types of conversion functions, intval(), floatval(), strval() [Memory: the target type val() you want to convert]

● Use the general type conversion function settype(mixed var,string type)

The first conversion method: (int) (bool) (float) (string) ( array) (object)

Recommended manualphp complete self-study manual
<?php   
$num1=3.14;   
$num2=(int)$num1;   
var_dump($num1); //输出float(3.14)   
var_dump($num2); //输出int(3)   
?>

Second conversion method: intval() floatval() strval()

<?php   
$str="123.9abc";   
$int=intval($str);     //转换后数值:123   
$float=floatval($str); //转换后数值:123.9   
$str=strval($float);   //转换后字符串:"123.9"    
?>
Recommended related articles:
1.php string to int
2.Type conversion in php
Related video recommendations:
1.Dugu Jiujian(4)_PHP video tutorial

The third conversion method: settype();

<?php   
$num4=12.8;   
$flg=settype($num4,"int");   
var_dump($flg);  //输出bool(true)   
var_dump($num4); //输出int(12)   
?>

Related recommendations:

PHP database addition, deletion, modification and query

PHP database saves session

PHP database is based on PDO operation class (mysql)

The above is the detailed content of PHP data type conversion (character to number, number to character). For more information, please follow other related articles on the PHP Chinese website!

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