How to convert string to floating point number in php

尊渡假赌尊渡假赌尊渡假赌
Release: 2023-08-07 14:36:27
Original
1225 people have browsed it

The methods to convert string to floating point number in PHP are: 1. Use the "(float)" function; 2. Use the "floatval()" function; 3. Use the "doubleval()" function; 4. Use Floating point constructor.

How to convert string to floating point number in php

Operating system for this tutorial: Windows 10 system, php8.1.3 version, Dell G3 computer.

In PHP, you can use type conversion to convert a string (string type) to a floating point number (float type) or a double-precision floating point number (double type). There are several ways to achieve this conversion:

1. Use (float) or floatval() function:

$stringNumber = "3.14";
floatNumber=(float)floatNumber = (float)floatNumber=(float)stringNumber; // 或者 floatNumber=floatval(floatNumber = floatval(floatNumber=floatval(stringNumber);
Copy after login

2. Use floatval() function:

$stringNumber = "3.14";
floatNumber=floatval(floatNumber = floatval(floatNumber=floatval(stringNumber);
Copy after login
Copy after login

3 , Use the doubleval() function:

$stringNumber = "3.14";
floatNumber=doubleval(floatNumber = doubleval(floatNumber=doubleval(stringNumber);
Copy after login

4. Use the floating point constructor:

$stringNumber = "3.14";
floatNumber=floatval(floatNumber = floatval(floatNumber=floatval(stringNumber);
Copy after login
Copy after login

No matter which method is chosen, the string will eventually be converted to the corresponding floating point type. Note that if the string cannot be parsed into a valid floating point representation, the conversion result will be 0.

The above is the detailed content of How to convert string to floating point number in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
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!