本文整理汇总了PHP中unknown::offset方法的典型用法代码示例。如果您正苦于以下问题:PHP unknown::offset方法的具体用法?PHP unknown::offset怎么用?PHP unknown::offset使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类unknown
的用法示例。
在下文中一共展示了unknown::offset方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: offset
/**
* undocumented function
*
* @param unknown $offset
* @param unknown $whence
* @return void
* @access public
*/
function offset($offset = null)
{
if (is_null($offset)) {
if (!is_object($this->resource)) {
return $this->offset;
}
return $this->offset;
}
if (!ctype_digit($offset)) {
return false;
}
if (is_object($this->resource)) {
$this->resource->offset($offset);
} else {
$this->offset = $offset;
}
}
示例2: getPagedRows
/**
*
* @param unknown $query
* @param array $config ['db','page','pageSize','orderBy','rows','pager']
* @return multitype:\yii\data\Pagination unknown
*/
public static function getPagedRows($query, $config = [])
{
$db = isset($config['db']) ? $config['db'] : null;
$countQuery = clone $query;
$pager = new Pagination(['totalCount' => $countQuery->count('*', $db)]);
if (isset($config['page'])) {
$pager->setPage($config['page'], true);
}
if (isset($config['pageSize'])) {
$pager->setPageSize($config['pageSize'], true);
}
$rows = $query->offset($pager->offset)->limit($pager->limit);
if (isset($config['orderBy'])) {
$rows = $rows->orderBy($config['orderBy']);
}
$rows = $rows->all($db);
$rowsLable = isset($config['rows']) ? $config['rows'] : 'rows';
$pagerLable = isset($config['pager']) ? $config['pager'] : 'pager';
$ret = [];
$ret[$rowsLable] = $rows;
$ret[$pagerLable] = $pager;
return $ret;
}