本文整理汇总了PHP中Appointment::createAppointment方法的典型用法代码示例。如果您正苦于以下问题:PHP Appointment::createAppointment方法的具体用法?PHP Appointment::createAppointment怎么用?PHP Appointment::createAppointment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Appointment
的用法示例。
在下文中一共展示了Appointment::createAppointment方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: foreach
if (!empty($majors)) {
$majorPrint = "";
foreach ($majors as $m) {
$majorDB .= $m . " ";
$majorPrint .= $m . ", ";
}
$majorPrint = substr($majorPrint, 0, -2);
}
//get advisor id
$id = $_SESSION['UserID'];
//make sure app doesn't exist
//insert new app to DB
//print app
foreach ($datetimes as $dt) {
// Attempt to create appointment
$created = Appointment::createAppointment($COMMON, $dt, 0, $majorDB, $studentLimit, $location);
echo date('l, F d, Y g:i A', strtotime($dt)), "<br>Location: ", $location, "<br>Majors included: ", $majorPrint;
echo "<br>Number of seats: {$studentLimit}";
if (!$created) {
// Appointment already exists
echo "<br><span style='color:red'>!!</span>";
}
echo "<br><br>";
}
?>
<br>
<form method="link" action="AdminUI.php">
<input type="submit" name="next" class="button large go" value="Return to Home">
</form>
</div>
<div class="bottom">
示例2: substr
$majorDB .= $m . " ";
$majorPrint .= $m . ", ";
}
$majorPrint = substr($majorPrint, 0, -2);
}
//get advisor id
$id = $_SESSION['UserID'];
$adv = new Advisor($COMMON, $id);
$advID = $adv->getID();
$location = $adv->getMeeting();
//make sure app doesn't exist
//insert new app to DB
//print app
foreach ($datetimes as $dt) {
// Attempt to create appointment
$created = Appointment::createAppointment($COMMON, $dt, $advID, $majorDB, 1, $location);
echo date('l, F d, Y g:i A', strtotime($dt)), "<br>Advisor: ", $adv->getFirstName(), " ", $adv->getLastName(), "<br>Location: ", $location, " <br> Majors: ", $majorPrint;
if (!$created) {
// Appointment already exists
echo "<br><span style='color:red'>!!</span>";
}
echo "<br><br>";
}
?>
<br>
<form method="link" action="AdminUI.php">
<input type="submit" name="next" class="button large go" value="Return to Home">
</form>
</div>
<div class="bottom">
<p><span style="color:red">!!</span> indicates that this appointment already exists. A repeat appointment was not made.</p>