结果是:
价格是5,850.00欧元 我需要这个 价格是5,850.00欧元
<?
$quantity = 25;
$price = 195;
$tax = .20;
$quite = $quantity * $price;
$quite = $quite + ($quite * $tax);
$quite = number_format($quite, 2);
echo 'price is' , $quite , 'Euros';
?>
由于
答案 0 :(得分:5)
尝试:
echo 'price is ' , $quite , ' Euros';
甚至:
echo "price is $quite Euros";
有关后一种语法的详细信息,请参阅"Variable parsing" section in the PHP manual on Strings。
(Ps。不应该是$quote
而不是$quite
?)
答案 1 :(得分:1)
尝试:
echo 'price is ' , $quite , ' Euros';