在 2 个 echo 之间插入一个空格

发布于 2025-01-04 09:47:12 字数 186 浏览 1 评论 0原文

如何在返回的文本中在 sample1sample2 之间添加空格?这是我到目前为止所拥有的:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蝶…霜飞 2025-01-11 09:47:12

这真的很简单,只是在变量之间echo一个空格......

<?php if($eventid!=""){echo $get_event['sample1'] , ' ', $get_event['sample2']; }

It's really simple, just echo a space between the variables...

<?php if($eventid!=""){echo $get_event['sample1'] , ' ', $get_event['sample2']; }
沩ん囻菔务 2025-01-11 09:47:12

缩进总是让事情变得更干净、更简单:

if (!empty($eventid)) {
    echo $get_event['sample1'] . ' ' . $get_event['sample2'];
}

在 PHP 上,您需要使用点 (.) 来连接字符串...正如您在字符串运算符文档中看到的那样:

http://php.net/manual/en/language.operators.string.php

Indentation always make things cleaner and easier:

if (!empty($eventid)) {
    echo $get_event['sample1'] . ' ' . $get_event['sample2'];
}

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文