如何创建$函数echo <div> PHP </div>

时间:2013-10-30 19:34:03

标签: php html

嘿我有一个我似乎无法弄清楚的问题,我怎样才能使$函数回显像这段代码的html标记:

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

我似乎无法得到它。这是我正在使用的代码不起作用:

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

如何让我的$功能起作用?

3 个答案:

答案 0 :(得分:2)

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

答案 1 :(得分:2)

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

$function = function() { echo '<div style="color: green;">click here</div>'; };
...
$function();

答案 2 :(得分: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>';