数组查询 PHP + mongoDB - 投票系统 ips
你能帮我一下吗?我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 唯一索引 和 UPSERT:
Use a Unique Index and a UPSERT:
使用 PHP 函数 in_array()
http:// /php.net/manual/en/function.in-array.php
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