在 2 个 echo 之间插入一个空格
如何在返回的文本中在 sample1
和 sample2
之间添加空格?这是我到目前为止所拥有的:
if ($eventid!="") {
echo $get_event['sample1'], $get_event['sample2'];
}
How do I add a space in the returned text between sample1
and sample2
? Here is what I have so far:
if ($eventid!="") {
echo $get_event['sample1'], $get_event['sample2'];
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这真的很简单,只是在变量之间
echo
一个空格......It's really simple, just
echo
a space between the variables...缩进总是让事情变得更干净、更简单:
在 PHP 上,您需要使用点 (.) 来连接字符串...正如您在字符串运算符文档中看到的那样:
http://php.net/manual/en/language.operators.string.php
Indentation always make things cleaner and easier:
On PHP, you need to use a dot (.) to concatenate strings... as you can see on the Strings Operators documentation:
http://php.net/manual/en/language.operators.string.php