如何用链接到phpmyadmin的代码添加£符号?

时间:2019-03-03 15:14:27

标签: php

我似乎无法毫无错误地在产品价格上加一个英镑符号。

echo '<td><center>' . $row->ProductPrice.'</td></center>';

1 个答案:

答案 0 :(得分:0)

您正在将字符串与变量混合。当在双引号中指定字符串时,将在其中解析变量。您应该使用花括号将带有变量引用的字符串区分开。

您可以这样简化:

echo "<td><center>£{$row->ProductPrice}</td></center>";

已阅读字符串文档,它将为您提供更多控制代码编写的方法:http://php.net/manual/en/language.types.string.php