Home>Article>Backend Development> How to force value to string type in php

How to force value to string type in php

青灯夜游
青灯夜游 Original
2021-05-13 18:13:26 1854browse

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

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

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!

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