变量和文本PHP之间的差距

时间:2013-07-18 16:04:09

标签: php

结果是:

价格是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';


?>

由于

2 个答案:

答案 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';