php数据库两个关联大表的大数组分页处理,防止内存溢出

        $ret = self::$db->select($tables, $fields, $where, $bind);

        if (!empty($ret)) {
            $retIds = array();
            $ids = array();
            while (!empty($ret)) {
                $_sub = array_splice($ret, 0, 10000); //每次取出10000个
                foreach ($_sub as $v) {
                    array_push($retIds, $v['pt_AccountKey']);
                }
                unset($_sub);
                /*过滤非快速登陆类型*/
                $place_holders = implode(',', array_fill(0, count($retIds), '?'));
                array_unshift($retIds, 'autoregs');
                $PT_Account = self::$db->select('PT_Account', 'pt_AccountKey', 'pt_RegisteSource=? AND pt_AccountKey IN (' . $place_holders . ')', $retIds);
                if (!empty($PT_Account)) {
                    array_push($ids, $v['pt_AccountKey']);
                }

            }
            unset($ret);

            if (!empty($ids)) {
                $num = count($ids);
                $_sub = array_splice($ids, $get['start'], $get['limit']);
                $place_holders = implode(',', array_fill(0, count($_sub), '?'));
                $where = 'pt_AccountKey IN (' . $place_holders . ')';
                $list = self::$db->select('PT_Account', 'pt_AccountID,pt_Password', $where, $_sub);
                $grid = array();
                $grid['rows'] = $list;
                $grid['total'] = $num;
                return $grid;
            }
        }

  

转载于:https://www.cnblogs.com/zenghansen/p/4228868.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值