首頁 > 後端開發 > php教程 > discuz x2.5中关于discuz_database类的有关问题

discuz x2.5中关于discuz_database类的有关问题

WBOY
發布: 2016-06-13 12:47:38
原創
853 人瀏覽過

discuz x2.5中关于discuz_database类的问题

<br />
	public static function delete($table, $condition, $limit = 0, $unbuffered = true) {<br />
		if (empty($condition)) {<br />
			return false;<br />
		} elseif (is_array($condition)) {<br />
			if (count($condition) == 2 && isset($condition['where']) && isset($condition['arg'])) {<br />
				$where = self::format($condition['where'], $condition['arg']);<br />
			} else {<br />
				$where = self::implode_field_value($condition, ' AND ');<br />
			}<br />
		} else {<br />
			$where = $condition;<br />
		}<br />
		$limit = dintval($limit);<br />
		$sql = "DELETE FROM " . self::table($table) . " WHERE $where " . ($limit ? "LIMIT $limit" : '');<br />
		return self::query($sql, ($unbuffered ? 'UNBUFFERED' : ''));<br />
	}<br />
该方法中的$where = self::format($condition['where'], $condition['arg']);21.$condition['arg']是什么意思指什么?<br />
登入後複製

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板