本文整理汇总了PHP中Question::exists方法的典型用法代码示例。如果您正苦于以下问题:PHP Question::exists方法的具体用法?PHP Question::exists怎么用?PHP Question::exists使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Question
的用法示例。
在下文中一共展示了Question::exists方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _index
public function _index($url)
{
new Protect();
if (!empty($url[0])) {
if (Question::exists($url[0])) {
if ($url[1] === 'answer') {
if (!empty(Input::post())) {
$content = Input::post()['content'];
$id = $url[0];
Question::postAnswer($content, $id);
echo 'Posted';
} else {
echo '
Post Answer
<form method="post" action="">
<input type="text" placeholder="Answer" name="content">
<input type="submit" value="submit">
</form>
';
}
} else {
self::init('QuestionsModel', 'questions', $url);
Question::countQuestionViews($url[0]);
}
} else {
echo 'Question not found';
}
} else {
self::init('QuestionsListModel', 'questionsList', $url);
}
}
示例2: Question
<a href="meetings/report/<?php
echo $meeting->id;
?>
" class="btn">ดูรายงาน</a><br /><br />
<?php
}
?>
<?php
if (mysql_to_unix($meeting->close_date) > time()) {
?>
<?php
$question = new Question();
$question->where('meeting_id', $meeting->id);
$question->where('(user_id = ' . $this->session->userdata('id') . ' or r_id = ' . $this->session->userdata('id') . ')');
$question->get();
if (!$question->exists()) {
?>
<a href="questions/form/<?php
echo $meeting->id;
?>
" class="btn">ลงทะเบียน</a>
<?php
}
?>
<?php
}
?>
</td>
</tr>
<?php
}
示例3: array
<?php
include '../../inc/init.inc';
if (isset($id) && is_numeric($id) && Question::exists($id)) {
$res->question = Question::find($id);
$res->responses = Question::find('all', array('conditions' => array('question_id' => $id), 'order' => 'created_at asc'));
$res->useTemplate("Liste des Questions");
} else {
echo "La question n'existe pas";
}