cfmgrv3 init...3

This commit is contained in:
최준흠 2023-06-28 13:19:32 +09:00
parent b4d66a11cc
commit 8345219e06

View File

@ -76,6 +76,8 @@ class ZoneModel extends Model
$this->like('domain', $word, 'both'); //befor , after , both $this->like('domain', $word, 'both'); //befor , after , both
if (isIPAddress_CommonHelper($word)) { if (isIPAddress_CommonHelper($word)) {
$subquery = $this->db->table('cloudflarerecord')->select('zone_uid')->where('content', $word, 'both'); $subquery = $this->db->table('cloudflarerecord')->select('zone_uid')->where('content', $word, 'both');
echo var_export($subquery, true);
exit;
$this->wherein('uid', $subquery); $this->wherein('uid', $subquery);
} }
} }