Home > Backend Development > PHP Problem > How to force conversion of data type in php

How to force conversion of data type in php

coldplay.xixi
Release: 2023-03-05 09:48:01
Original
2863 people have browsed it

php methods to force data type conversion: 1. The first function [int, bool, float, string, array, object]; 2. The second function [ intval() floatval() strval() ]; 3. The third function [settype()].

How to force conversion of data type in php

Related learning recommendations: php graphic tutorial

php method of forcing data type conversion:

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

<?php   
$num1=3.14;   
$num2=(int)$num1;   
var_dump($num1); //输出float(3.14)   
var_dump($num2); //输出int(3)   
?>
Copy after login

The second conversion method: intval() floatval() strval()

<?php   
$str="123.9abc";   
$int=intval($str);     //转换后数值:123   
$float=floatval($str); //转换后数值:123.9   
$str=strval($float);   //转换后字符串:"123.9"    
?>
Copy after login

The third conversion method: settype();

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


If you want to know more about related learning, please pay attention to the php training column!

The above is the detailed content of How to force conversion of data type in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template