如何用 php 标签分解 echo?
<?php
if(isset($_GET['value'])){
echo ?>
HTML CODE GOES HERE
<?php
;
}
?>
这样的事情能完成吗?我的脚本中出现红色错误。
<?php
if(isset($_GET['value'])){
echo ?>
HTML CODE GOES HERE
<?php
;
}
?>
Can something like this be accomplished? I'm getting red errors from my script.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
试试这个:
try this:
您的代码应该可以在没有回显的情况下工作,但您也可以尝试以下操作:
Your code should work without the echo, but you could also try this:
删除“echo”,它起作用了
drop "echo", it works
去掉回声和分号,它应该可以正常工作。
或者您可以使用此语法
此外,您还可以查看用于编写字符串的heredoc语法(您的HTML)
Drop the echo and the semi colon and it should work fine.
or you can use this syntax
Additionally you could also look into the heredoc syntax for writing strings (your HTML)