當前位置: 首頁>>代碼示例>>PHP>>正文


PHP UserService::select_appoint_by_uuid方法代碼示例

本文整理匯總了PHP中UserService::select_appoint_by_uuid方法的典型用法代碼示例。如果您正苦於以下問題:PHP UserService::select_appoint_by_uuid方法的具體用法?PHP UserService::select_appoint_by_uuid怎麽用?PHP UserService::select_appoint_by_uuid使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在UserService的用法示例。


在下文中一共展示了UserService::select_appoint_by_uuid方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: unserialize

<?php

if (empty($_SESSION['current_user'])) {
    $url = 'http://' . $_SERVER['SERVER_NAME'] . ':' . $_SERVER["SERVER_PORT"] . $_SERVER["REQUEST_URI"];
    echo "<script type='text/javascript'>alert('請您先登陸!');window.location.href='/m/user.php?mod=signin&url={$url}'</script>";
} else {
    $user_id = unserialize($_SESSION['current_user'])->uuid;
    $userSer = new UserService($user_id);
    $appoint_list = $userSer->select_appoint_by_uuid($user_id, 3, 0, 10);
    $page_title = '我的預約';
    require_once ykfile("pages/user/appoint_record.php");
}
開發者ID:samuel072,項目名稱:PHP,代碼行數:12,代碼來源:appoint_record.php

示例2: json_encode

<?php

$user_id = $_GET['user_id'];
$next_id = intval($_GET['next_id']);
$count = intval($_GET['count']);
$userSer = new UserService(@$user_id);
$total = $userSer->get_count_by_user_less($user_id, 3);
$appoint_list = $userSer->select_appoint_by_uuid($user_id, 3, $next_id, $count);
foreach ($appoint_list as $appoint) {
    $appoint->activity->start_time = date("Y年m月d日", strtotime($appoint->activity->start_time));
    $appoint->activity->end_time = date("H點i分", strtotime($appoint->activity->end_time));
}
echo json_encode(array("total" => $total, "records" => $appoint_list));
開發者ID:samuel072,項目名稱:PHP,代碼行數:13,代碼來源:user_appoint_record.php


注:本文中的UserService::select_appoint_by_uuid方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。