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

How to convert characters into numbers in php

藏色散人
藏色散人Original
2020-07-10 10:10:532762browse

php method to convert characters into numbers: 1. Add the target type enclosed in parentheses before the variable to be converted; 2. Use 3 specific types of conversion functions, namely "intval() ”, “floatval()” and “strval()” functions.

How to convert characters into numbers in php

php method of converting characters into numbers

There are two methods:

1. The first conversion method: add the target type enclosed in parentheses before the variable to be converted, such as (int); (bool); (float); (string); (array); (object)

How to convert characters into numbers in php

2. The second conversion method: use three specific types of conversion functions, intval(); floatval(); strval()

How to convert characters into numbers in php

For more related knowledge, please visit PHP Chinese website!

The above is the detailed content of How to convert characters into numbers 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
Previous article:How to install php5.3Next article:How to install php5.3