How to force value to string type in php

青灯夜游
Release: 2023-03-09 17:14:02
Original
1861 people have browsed it

In PHP, you can use forced type conversion, that is, add the target type "(string)" enclosed in parentheses before the variable or value to be converted to force the value to a string type, for example "(string)365765".

How to force value to string type in php

The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

How does php force the value to be converted to String type

Use forced type conversion--Add the target type enclosed in parentheses before the variable to be converted

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

Example:

<?php  
$int=365765;  
$str1=(string)$int;  
var_dump($int); 
var_dump($str1); 

$folat=3.14;  
$str2=(string)$folat;  
var_dump($folat); 
var_dump($str2); 
?>
Copy after login

Rendering:

How to force value to string type in php

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to force value to string 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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!