php 内爆数组帮助

发布于 2024-07-27 19:16:58 字数 495 浏览 4 评论 0原文

我正在尝试将 $users_in_range 数组中的 userID 内爆,问题是它是内爆英里而不是 userid

<?PHP
$users_in_range = users_in_range($lat, $long, 500, true); 

// implode users into mysql friendly list
$comma_separated = implode(",", $users_in_range);
echo $comma_separated;

// this is just for output while debugging
foreach ($users_in_range as $userid => $miles_away) {
    echo "UserID=<b>$userid</b> is <b>$miles_away</b> miles away from me.<br />";
}
?>

I am trying to the implode the userIDs in the $users_in_range array the problem is it is iploding miles instead of userid

<?PHP
$users_in_range = users_in_range($lat, $long, 500, true); 

// implode users into mysql friendly list
$comma_separated = implode(",", $users_in_range);
echo $comma_separated;

// this is just for output while debugging
foreach ($users_in_range as $userid => $miles_away) {
    echo "UserID=<b>$userid</b> is <b>$miles_away</b> miles away from me.<br />";
}
?>

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

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

发布评论

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

评论(2

白鸥掠海 2024-08-03 19:16:59

userid 是数组的键,因此您需要执行以下操作:

$comma_separated = implode(",", array_keys($users_in_range));

The userid is the key of the array, so you need to do:

$comma_separated = implode(",", array_keys($users_in_range));
窝囊感情。 2024-08-03 19:16:59

尝试 :

$comma_separated = implode(',', array_keys($users_in_range));

try :

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