⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 clean.inc.php

📁 城市分类信息,门户网站,我做为地方信息网
💻 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 + -