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 字符串浮动


- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01