在 if 语句之外回显

发布于 2024-11-05 02:24:49 字数 321 浏览 1 评论 0原文

这是我的代码,

if ($follower_username == $user){

echo $followed_username.",";

};

当它运行时,它会回显名称,名称2,名称3,名称4,

但是当我这样做时,

if ($follower_username == $user){

$names = $followed_username.",";
};

echo $name`;

它只输出名称4,

是什么导致它只提取姓氏?

谢谢!

Here is my code

if ($follower_username == $user){

echo $followed_username.",";

};

When this runs it echos name,name2,name3,name4

however when I did this

if ($follower_username == $user){

$names = $followed_username.",";
};

echo $name`;

it only outputs name4,

What is causing it to only pull the last name?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

忘你却要生生世世 2024-11-12 02:24:50
if ($follower_username == $user) {
  $names .= $followed_username;
}
echo $names;
if ($follower_username == $user) {
  $names .= $followed_username;
}
echo $names;
咋地 2024-11-12 02:24:50

试试这个:

//outside your loop:
$names = '';

while(){
    //...code

   if ($follower_username == $user){

   $names .= $followed_username.",";
   };

   echo $names;
}

Try this out:

//outside your loop:
$names = '';

while(){
    //...code

   if ($follower_username == $user){

   $names .= $followed_username.",";
   };

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