vote up 1 vote down star

I am not familiar with PHP at all and had a quick question.

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);

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).

But I have no clue how to parse/cast/convert variables in PHP.

What should I do?

flag

3 Answers

vote up 5 vote down check
$rootbeerFloat = (float) $InvoicedUnits;

Should do it for you. Check out Type-Juggling. You should also read String conversion to Numbers.

link|flag
vote up -1 vote down

tnks! tnks! tnks! tnks!

link|flag
vote up 1 vote down

You want the floatval function http://us3.php.net/manual/en/function.floatval.php:

float floatval  ( mixed $var  ) - Gets the float value of a string.

<?php
 $var = '122.34343The';
 $float_value_of_var = floatval($var);
 echo $float_value_of_var; // 122.34343
?>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.