本文整理匯總了PHP中CSQLDataSource::tempTableDates方法的典型用法代碼示例。如果您正苦於以下問題:PHP CSQLDataSource::tempTableDates方法的具體用法?PHP CSQLDataSource::tempTableDates怎麽用?PHP CSQLDataSource::tempTableDates使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CSQLDataSource
的用法示例。
在下文中一共展示了CSQLDataSource::tempTableDates方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: array
$smarty->assign("services", $services);
if (!$service_id) {
$smarty->display("inc_form_stats.tpl");
CAppUI::stepMessage(UI_MSG_ALERT, "warning-hospi-stats-choose_service");
return;
}
$ds = CSQLDataSource::get("std");
$dates = array();
$date_temp = $date_min;
$series = array();
while ($date_temp <= $date_max) {
$dates[] = array(count($dates), CMbDT::dateToLocale($date_temp));
$date_temp = CMbDT::date("+1 day", $date_temp);
}
// Table temporaraire de dates pour les jointures
$tab_name = CSQLDataSource::tempTableDates($date_min, $date_max);
// Nombre de lits totaux sur le service
$lit = new CLit();
$where = array();
$ljoin = array();
$ljoin["chambre"] = "chambre.chambre_id = lit.chambre_id";
$where["service_id"] = " = '{$service_id}'";
$where["lit.annule"] = " = '0'";
$nb_lits = $lit->countList($where, null, $ljoin);
if (!$nb_lits) {
$smarty->display("inc_form_stats.tpl");
CAppUI::stepMessage(UI_MSG_WARNING, "warning-hospi-stats-no_beds");
return;
}
// Lits ouverts (non bloqués - non compris les blocages des urgence)
$serie = array("data" => array(), "label" => utf8_encode("Ouvert / Total"), "markers" => array("show" => true));