本文整理汇总了PHP中Survey::setId方法的典型用法代码示例。如果您正苦于以下问题:PHP Survey::setId方法的具体用法?PHP Survey::setId怎么用?PHP Survey::setId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Survey
的用法示例。
在下文中一共展示了Survey::setId方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getSurveys
/**
* @return Survey[]
*/
public static function getSurveys()
{
$db = DB::getConn();
$stm = $db->prepare('select * from Survey');
$stm->execute();
$rss = $stm->fetchAll();
$arr = [];
foreach ($rss as $rs) {
if ($rs['show'] == 1) {
$q = new Survey($rs['title'], 1);
$q->setId($rs['id']);
$q->setPercent(SurveyCtrl::getPercent($rs['id']));
$q->setCount(SurveyCtrl::getVotedNumber($rs['id']));
$arr[] = $q;
}
}
return $arr;
}
示例2: Survey
<?php
/**
* Created by PhpStorm.
* User: JayDz
* Date: 15/07/15
* Time: 2:54 PM
*/
require_once './controller/SurveyCtrl.php';
require_once './model/Survey.php';
//echo '<br><br><br><br>';
foreach ($_POST as $key => $value) {
// echo $key.': '.$value.'<br>';
if ($key == 'id') {
$title = $_POST['title'];
$show = $_POST['show'] == 'on' ? 1 : 0;
$s = new Survey($title);
$s->setShow($show);
$s->setId($value);
SurveyCtrl::update($s);
echo 'okkkk';
}
}
示例3: loadSurveys
/**
* Construit un tableau de sondages à partir d'un tableau de ligne de la table 'surveys'.
* Ce tableau a été obtenu à l'aide de la méthode fetchAll() de PDO.
*
* @param array $arraySurveys Tableau de lignes.
* @return array(Survey)|boolean Le tableau de sondages ou false si une erreur s'est produite.
*/
private function loadSurveys($arraySurveys) {
$surveys = array();
foreach($arraySurveys as $row){
$survey = new Survey($row['owner'], $row['question']);
$survey->setId($row['ID']);
$surveys[] = $survey;
}
return $surveys;
}