當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Versions::recent方法代碼示例

本文整理匯總了PHP中Versions::recent方法的典型用法代碼示例。如果您正苦於以下問題:PHP Versions::recent方法的具體用法?PHP Versions::recent怎麽用?PHP Versions::recent使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Versions的用法示例。


在下文中一共展示了Versions::recent方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: test_recent_user

 /**
  * @depends test_get_classes
  */
 function test_recent_user()
 {
     // recent with user
     DB::execute('update versions set user = 1');
     $recent = Versions::recent(1);
     $this->assertEquals(count($recent), 2);
 }
開發者ID:nathanieltite,項目名稱:elefant,代碼行數:10,代碼來源:VersionsTest.php

示例2: gmdate

    $p->edited = gmdate('Y-m-d H:i:s');
    $p->editor = User::$user->id;
    $p->votable = isset($_POST['votable']) ? 1 : 0;
    $p->visible = isset($_POST['visible']) ? 1 : 0;
    $p->fallback = isset($_POST['fallback']) ? 1 : 0;
    $p->options = isset($_POST['options']) ? array_filter(explode("\n", str_replace("\r", '', $_POST['options']))) : $p->options;
    $p->allowed = $_POST['allowed'] ? $_POST['allowed'] : 1;
    $p->required = $_POST['required'] ? $_POST['required'] : 1;
    if (!$p->put()) {
        $_POST['options'] = $p->options;
        $this->add_notification('Error: Unable to save poll data.');
        @error_log('Error: ' . $p->error);
        $page->add_script('/apps/polls/js/poll.edit.js', 'head');
        echo View::render('polls/edit', $_POST);
        return;
    }
    if (isset($_POST['fallback'])) {
        $polls = polls\Poll::query()->where('fallback', true)->fetch();
        foreach ($polls as $poll) {
            if ($poll->id != $this->params[0]) {
                $poll->fallback = 0;
                $poll->put();
            }
        }
    }
    if (\Versions::recent($p) != $p) {
        \Versions::add($p);
    }
    $this->add_notification('Success.');
    $this->redirect('/polls/admin');
}
開發者ID:jbroadway,項目名稱:polls,代碼行數:31,代碼來源:edit.php


注:本文中的Versions::recent方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。