-5

嘿,我有一个我似乎无法弄清楚的问题,我怎样才能让 $function 像下面的代码一样回显一个 html 标记:

<div style="color: purple;">Hello</div>

我似乎无法理解。这是我使用的代码不起作用:

$contactUs = echo <div style="color: green;">click here</div>;

我怎样才能使我的 $function 工作?

4

3 回答 3

2
$contactUs = '<div style="color: green;">click here</div>';
echo $contactUs; 
于 2013-10-30T19:35:50.170 回答
2

不太确定你在问什么,但你可以这样做:

$function = function() { echo '<div style="color: green;">click here</div>'; };
...
$function();
于 2013-10-30T19:37:01.040 回答
0

1° 在php中,所有的字符串都需要用引号括起来:

'<div style="color: green;">click here</div>';

然后,echo是一种将文本发送到输出(例如您的屏幕)的语言结构;

// If you want to use a variable
$contactUs = '<div style="color: green;">click here</div>';
echo $contactUs;

// but you can use echo 'your string':
echo '<div style="color: green;">click here</div>';
于 2013-10-30T19:39:06.153 回答