📄 clean.inc.php
字号:
<?phpfunction ClsAllComment($ids){ global $DB, $tablepre; if (empty($ids) || !is_array($ids)) { return; } $ids = implode(",", $ids); $DB->query("DELETE FROM {$tablepre}allcomment WHERE acid IN ($ids)");}function ClsBizinfo_One($ids){ global $DB, $tablepre; if (empty($ids) || !is_array($ids)) { return; } $ids = implode(",", $ids); $DB->query("DELETE FROM {$tablepre}bizinfo_one WHERE bizid IN ($ids)"); }function ClsBizUser($ids){ global $DB, $tablepre; if (empty($ids) || !is_array($ids)) { return; } $ids = implode(",", $ids); $DB->query("DELETE FROM {$tablepre}bizuser WHERE buid IN ($ids)"); }function ClsComment($ids){ global $DB, $tablepre; if (empty($ids) || !is_array($ids)) { return; } $ids = implode(",", $ids); $DB->query("DELETE FROM {$tablepre}comment WHERE cmtid IN ($ids)"); }/** * 鍒犻櫎涓
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -