本文整理汇总了PHP中Api::query方法的典型用法代码示例。如果您正苦于以下问题:PHP Api::query方法的具体用法?PHP Api::query怎么用?PHP Api::query使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Api
的用法示例。
在下文中一共展示了Api::query方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: create_token
/**
* Creates and returns a new token/api_key combination for the
* specified user ID. Returns an array with the two values. Note
* that for an existing user ID, this will generate a new pair,
* replacing the old values and making them no longer valid for
* API access.
*/
public static function create_token($user_id)
{
$a = Api::query()->where('user_id', $user_id)->fetch();
if (count($a) > 0) {
$a = $a[0];
$a->token = md5(uniqid(mt_rand(), 1));
$a->api_key = md5(uniqid(mt_rand(), 1));
} else {
$a = new Api(array('token' => md5(uniqid(mt_rand(), 1)), 'api_key' => md5(uniqid(mt_rand(), 1)), 'user_id' => $user_id));
}
while (!$a->put()) {
$a->token = md5(uniqid(mt_rand(), 1));
}
return array($a->token, $a->api_key);
}
示例2: writeNews
/** Выводит блоки с новостями на страницу
* @param count {natural} количество новостей
* @return {string} @echo
*/
function writeNews($count = 2, $form = array())
{
global $section;
if (count($form) == 0) {
$form = $section['loginForm'];
}
$r = array();
if ($count > 0) {
for ($i = 0; $i < count($form); ++$i) {
$r[] = $form[$i];
}
}
$r[] = "<div id=\"news\"" . ($count > 0 ? "" : " class=\"noside\"") . ">";
$news = Api::query('*', 'news', $count, array('id' => 'desc'));
for ($i = 0; $i < count($news); ++$i) {
$temp = newsItem($news[$i]);
for ($j = 0; $j < count($temp); ++$j) {
$r[] = space(2) . $temp[$j];
}
}
if ($count > 0) {
$r[] = space(2) . "<a href=\"?page=news\" class=\"button lang\">Все новости</a>";
}
$r[] = "</div>";
return $r;
}
示例3: all
public static function all()
{
return Api::query('*', 'groups');
}