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


PHP DbUtil::getStopLine方法代碼示例

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


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

示例1: dsin

 }
 function dsin($arg)
 {
     return sin(deg2rad($arg));
 }
 for ($i = 0; $i < count($myStopList); $i++) {
     if ($myStopList[$i]->lat != 0) {
         $r = 6378.137;
         $distant = $r * acos(dsin($lat) * dsin($myStopList[$i]->lat) + dcos($lat) * dcos($myStopList[$i]->lat) * dcos($myStopList[$i]->long - $long));
         $distant = round($distant, 2) . ' km';
     } else {
         $distant = 'N/A';
     }
     echo "<h3>" . $myStopList[$i]->stopName . " <small>{$distant}</small></h3>";
     echo "<hr>";
     $lineList = $Database->getStopLine($myStopList[$i]->stopId);
     for ($j = 0; $j < count($lineList); $j++) {
         $lineName = $Database->getLineName($lineList[$j], $userName);
         echo "<h4>行き先: {$lineName}</h4>";
         echo "<table class=table>";
         echo "<thead><th>時刻</th><th>殘り時間</th></thead>";
         $timeData = $Database->getTimeTableEx($myStopList[$i]->stopId, $lineList[$j], get4Time() - 5, 3);
         for ($k = 0; $k < count($timeData); $k++) {
             if ($timeData[$k]->type != getTodayType()) {
                 continue;
             }
             $classText = '';
             $stopTime = formatTime($timeData[$k]->time);
             if (getRemainUnixTime($stopTime) < 600) {
                 $classText = 'class=warning';
             }
開發者ID:Amfys,項目名稱:BST,代碼行數:31,代碼來源:my.php

示例2: DbUtil

<!DOCTYPE html>
<?php 
require_once '../nav.php';
require_once '../db.php';
require_once 'sidemenu.php';
$Database = new DbUtil();
$userName = $Database->getUserName();
$sideMenu = getSideMenu('ttbl');
$NAV = nav($userName);
if ($userName == null) {
    header('Location: ../login.php', true, 303);
    exit;
}
$ID = $_GET['id'];
$stopData = $Database->getStop($ID, $userName);
$lineData = $Database->getStopLine($ID);
?>
<html lang="ja">
	<head>
    		<meta charset="utf-8">
		<meta http-equiv="X-UA-Compatible" content="IE=edge">
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<title>バス停 <?php 
echo "{$stopData->stopName}";
?>
</title>

		<!-- Bootstrap -->
		<link href="/bst/css/bootstrap.min.css" rel="stylesheet">

		<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
開發者ID:Amfys,項目名稱:BST,代碼行數:31,代碼來源:stopdata.php


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