为什么这个字符串回显0?
当我尝试回显该字符串时,它显示“0”,
我在本地服务器和 http://writecodeonline.com/php/
上尝试过,两次都发生了同样的事情。我以前从未发生过这种情况,这是什么以及如何解决?提前致谢。
<?PHP
$info = '
<div id="gallery_option_###number###">
<a href="#galleryButton###number###" onclick="gallery_button_down(' + "'###number###'" + ')">
Burn Notice
</a>
<div id="info_option_###number###">
<!--
[title]title[|title]
[description]test[|description]
[image]url[|image]
-->
</div>
</div>';
echo $info;
?>
When I try and echo this string it shows "0"
I tried it on my local server and on http://writecodeonline.com/php/
both times same thing happened. This has never happened to me before, what is it and how do I fix? Thanks in advance.
<?PHP
$info = '
<div id="gallery_option_###number###">
<a href="#galleryButton###number###" onclick="gallery_button_down(' + "'###number###'" + ')">
Burn Notice
</a>
<div id="info_option_###number###">
<!--
[title]title[|title]
[description]test[|description]
[image]url[|image]
-->
</div>
</div>';
echo $info;
?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在遵循 JavaScript 的字符串连接方式。
阅读:
http://php.net/manual/en/language.operators.string .php
You are following JavaScript way of string concatenation.
Read:
http://php.net/manual/en/language.operators.string.php