本文整理匯總了PHP中ObjectCache::singleton方法的典型用法代碼示例。如果您正苦於以下問題:PHP ObjectCache::singleton方法的具體用法?PHP ObjectCache::singleton怎麽用?PHP ObjectCache::singleton使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ObjectCache
的用法示例。
在下文中一共展示了ObjectCache::singleton方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: _find
public static function _find($model, $a)
{
$cond = array_shift($a);
if (empty($cond)) {
return array();
}
$ti = self::modelinfo($model);
if (!$ti) {
return NULL;
}
$limit = array_shift($a);
if (!empty($limit) && !preg_match('/^\\s*\\d+\\s*(,\\s*\\d+)?\\s*$/', $limit)) {
# FIXME report a better error here
error_log("invalid limit {$limit}");
return array();
}
$orderby = array_shift($a);
list($where, $a) = self::_conditions_to_query($ti, $cond);
if (preg_match('/^\\s*select/', $where)) {
$q = $where;
} else {
$q = "select * from " . $ti['tableQ'] . " where {$where}";
}
if ($orderby) {
# FIXME protect against $orderby being possibly tainted
$q .= " order by " . $orderby;
}
if ($limit) {
$q .= " limit {$limit}";
}
$sth = self::modeldbh($model)->prepare($q);
$sth->execute($a);
#error_log($sth->_stmt());
$r = array();
while ($o = $sth->fetchrow_object($model)) {
$o = ObjectCache::singleton($o);
$o->checkpoint();
$o->_Query_bound_to_row = true;
$r[] = $o;
}
return $r;
}