本文整理匯總了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;
}