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


PHP Answer::whereNotNull方法代码示例

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


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

示例1: fire

 /**
  * Execute the console command.
  *
  * @return mixed
  */
 public function fire()
 {
     ini_set('max_execution_time', 0);
     $answers = Answer::whereNotNull('id_attribute')->get();
     Answer::whereRaw('1=1')->update(['id_attr_map' => null]);
     $oldAnswers = DB::connection('old')->select('select * from option_ans where attribute_id is not null');
     foreach ($answers as $answer) {
         foreach ($oldAnswers as $oldAnswer) {
             if (strcmp($answer->name, $oldAnswer->opt_content) == 0) {
                 $data = DB::connection('old')->select('select * from attribute where id = ' . $oldAnswer->attribute_id);
                 $answer->id_attr_map = $data[0]->attribute;
                 $answer->save();
                 echo $answer->name . "\n";
                 echo $oldAnswer->opt_content . "\n";
                 echo $answer->id_attr_map . "\n";
                 echo "---------\n";
                 break;
             }
         }
     }
 }
开发者ID:phucps89,项目名称:Tour,代码行数:26,代码来源:AnswerMap.php

示例2: scoreAnswer

 private function scoreAnswer($listAnswer)
 {
     $listAns = Answer::whereNotNull('id_attribute')->get();
     $arrAnsPoint = [];
     foreach ($listAns as $ans) {
         $arrAnsPoint[$ans->id] = ['point' => null, 'level' => null, 'interactions' => [], 'attribute' => $ans->id_attribute];
     }
     foreach ($listAnswer as $ans) {
         $arrAnsPoint[$ans]['point'] = 100;
         $arrAnsPoint[$ans]['level'] = 1;
     }
     return $arrAnsPoint;
 }
开发者ID:phucps89,项目名称:Tour,代码行数:13,代码来源:AdviceController.php


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