数组查询 PHP + mongoDB - 投票系统 ips

发布于 2024-11-05 01:55:29 字数 410 浏览 0 评论 0原文

你能帮我一下吗?我正在 php + mongodb 中制作我的投票系统,我想保留已经投票的 IP 地址。最好的方法是什么? 我正在考虑这样做:

$ip=$_SERVER['REMOTE_ADDR'];
$ipData = array('$push' => array('ips' => $ip), '$inc' => array('votes' => 1));
$collection->update(array( '_id' => $id), $ipData);

这是最好的方法吗?您将如何比较 ips 数组的所有元素来查看该 ip 是否尚未投票?该列表将类似于 (192.168.0.1, 127.0.0.1, 123.45.67.8)

谢谢你!

can you maybe help me please? I'm making my voting system in php + mongodb, and I would like to keep the ip addresses which already voted. What would be to best way?
I was thinking about doing it like this:

$ip=$_SERVER['REMOTE_ADDR'];
$ipData = array('$push' => array('ips' => $ip), '$inc' => array('votes' => 1));
$collection->update(array( '_id' => $id), $ipData);

Is this the best way to do it? How would you than compare all the elements of the ips array to see if the ip already didn't voted? The list will look like (192.168.0.1, 127.0.0.1, 123.45.67.8).

Thank you!

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

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

发布评论

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

评论(2

ぃ弥猫深巷。 2024-11-12 01:55:29

使用 唯一索引UPSERT

$collection->ensureIndex(array('ips'), array('unique' => true));

Use a Unique Index and a UPSERT:

$collection->ensureIndex(array('ips'), array('unique' => true));
烟雨凡馨 2024-11-12 01:55:29

compare the user's ip with the array of IPs using the PHP function in_array()

http://php.net/manual/en/function.in-array.php

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