当前位置: 首页>>代码示例>>PHP>>正文


PHP Options::find方法代码示例

本文整理汇总了PHP中Options::find方法的典型用法代码示例。如果您正苦于以下问题:PHP Options::find方法的具体用法?PHP Options::find怎么用?PHP Options::find使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Options的用法示例。


在下文中一共展示了Options::find方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: disableOption

 public function disableOption($option_id)
 {
     $option = Options::find($option_id);
     $option->active = 0;
     $option->save();
     return Redirect::back();
 }
开发者ID:sidis405,项目名称:s-opa,代码行数:7,代码来源:AdminQuestionsController.php

示例2: showAction

 public function showAction($question_id)
 {
     $this->view->poll = Questions::findFirst($question_id);
     //$this->view->options = Options::findByQuestionId($question_id);
     $this->view->options = Options::find(array('question_id = ?0', 'bind' => array($question_id), 'order' => 'vote DESC'));
 }
开发者ID:hymns,项目名称:PhalconTutorial,代码行数:6,代码来源:PollController.php

示例3: rows

<?php

/**
 * Models Plugin Example
 * Add this to a view in your template
 */
// Require the model file
require MODELS_PATH . 'Options.php';
// Find Example with cache (returns array of objects)
$all_opts = Options::find()->cache('cacheIdentifier')->all();
// Find Example with select
$three_opts = Options::find()->limit(3)->select(['option_id', 'option_name'])->orderBy('option_id DESC')->all();
// FindByPk Example (returns Object)
$opt1 = Options::findByPk(1);
// Print out the record with Pk = 1
echo '<h2>Row found by Primary Key</h2>';
echo "Primary Key 1: " . $opt1->option_name . " => " . $opt1->option_value . "<br>";
// Print out the three first rows in Options
echo '<h2>Three last rows with select</h2>';
foreach ($three_opts as $opt) {
    echo $opt->option_name . '<br>';
}
// Print all rows in Options (cached)
echo '<h2>All rows (Cached)</h2>';
foreach ($all_opts as $opt) {
    echo $opt->option_name . '<br>';
}
开发者ID:jellingsen,项目名称:db-models,代码行数:27,代码来源:example.php


注:本文中的Options::find方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。