PHP String to Float(PHP字符串浮动)
问题描述
我对 PHP 一点也不熟悉,有一个简短的问题.
I am not familiar with PHP at all and had a quick question.
我有 2 个变量 pricePerUnit 和 InvoicedUnits.这是将这些设置为值的代码:
I have 2 variables pricePerUnit and InvoicedUnits. Here's the code that is setting these to values:
$InvoicedUnits = ((string) $InvoiceLineItem->InvoicedUnits);
$pricePerUnit = ((string) $InvoiceLineItem->PricePerUnit);
如果我输出这个,我会得到正确的值.假设 5000 发票单位和 1.00 价格.
If I output this, I get the correct values. Lets say 5000 invoiced units and 1.00 for price.
现在,我需要显示花费的总金额.当我将这两个相乘时它不起作用(正如预期的那样,这些是字符串).
Now, I need to show the total amount spent. When I multiply these two together it doesn't work (as expected, these are strings).
但我不知道如何在 PHP 中解析/转换/转换变量.
But I have no clue how to parse/cast/convert variables in PHP.
我该怎么办?
推荐答案
$rootbeer = (float) $InvoicedUnits;
应该为你做.查看 Type-Juggling.您还应该阅读 字符串转换为数字.
Should do it for you. Check out Type-Juggling. You should also read String conversion to Numbers.
这篇关于PHP字符串浮动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP字符串浮动
基础教程推荐
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- 如何替换eregi() 2022-01-01
