Home  >  Article  >  Backend Development  >  How to convert numbers into strings in php

How to convert numbers into strings in php

王林
王林Original
2020-11-03 11:35:452814browse

php method to convert numbers into strings: You can use the strval() function to convert numbers into strings, such as [$str="123.9abc";strval($float);]. It can also be achieved through forced type conversion or the universal type conversion function settype().

How to convert numbers into strings in php

There are three conversion methods for PHP data types:

1. Forced conversion, enclosed in parentheses before the variable to be converted The target type

2. Use three specific type conversion functions, intval(), floatval(), strval()

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

(Video tutorial recommendation: php video tutorial)

Example:

The first conversion method

th Two conversion methods:

The third conversion method:

Related recommendations: php training

The above is the detailed content of How to convert numbers into strings 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