删除php变量和html字符之间的空格

时间:2013-05-30 09:05:01

标签: php html variables whitespace

我有php:$currencysymbol = "£"

后来我想在html中使用它来显示:£1 = xxxxx

但是如何摆脱符号与1?

之间的空白
$currencysymbol 1 = xxxxx //whitespace £ 1
$currencysymbol1 = xxxxx // unknown variable

1 个答案:

答案 0 :(得分:2)

尝试

<?php
     echo $currencysymbol."1" = xxxxx;
?>