嘿,我有一个我似乎无法弄清楚的问题,我怎样才能让 $function 像下面的代码一样回显一个 html 标记:
<div style="color: purple;">Hello</div>
我似乎无法理解。这是我使用的代码不起作用:
$contactUs = echo <div style="color: green;">click here</div>;
我怎样才能使我的 $function 工作?
$contactUs = '<div style="color: green;">click here</div>';
echo $contactUs;
不太确定你在问什么,但你可以这样做:
$function = function() { echo '<div style="color: green;">click here</div>'; };
...
$function();
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>';