0

我有以下 echo 语句显示会话中的数值:

<?php echo(str_replace('"', '&quot;', $row_WAATKgblqemplisting['Group'])); ?>

我如何更改此语句,以便如果$row_WAATKgblqemplisting['Group']

等于2 它说:这是#2 如果它等于1 它说:这是#1,如果它等于3 它说:这是#3?

4

3 回答 3

2
echo 'This is #' . $row_WAATKgblqemplisting['Group'];

如果写入 HTML,您可以使用实体&#35;而不是 ASCII#

于 2012-05-18T19:42:00.730 回答
0
$number =  $row_WAATKgblqemplisting['Group'];
echo 'This is &#35;'.$number;

那是你想要做的吗?

于 2012-05-18T19:41:43.240 回答
0
echo "This is #{$row_WAATKgblqemplisting['Group']}\n";
于 2012-05-18T19:44:45.077 回答