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


PHP Spotter::getAllAircraftTypes方法代碼示例

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


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

示例1: header

require 'require/class.Connection.php';
require 'require/class.Spotter.php';
if (!isset($_GET['aircraft_type'])) {
    header('Location: ' . $globalURL . '/aircraft');
    die;
}
$Spotter = new Spotter();
$spotter_array = $Spotter->getSpotterDataByAircraft($_GET['aircraft_type'], "0,1", "");
if (!empty($spotter_array)) {
    $title = 'Most Common Routes from ' . $spotter_array[0]['aircraft_name'] . ' (' . $spotter_array[0]['aircraft_type'] . ')';
    require 'header.php';
    print '<div class="select-item">';
    print '<form action="' . $globalURL . '/aircraft" method="post">';
    print '<select name="aircraft_type" class="selectpicker" data-live-search="true">';
    print '<option></option>';
    $aircraft_types = $Spotter->getAllAircraftTypes();
    foreach ($aircraft_types as $aircraft_type) {
        if ($_GET['aircraft_type'] == $aircraft_type['aircraft_icao']) {
            print '<option value="' . $aircraft_type['aircraft_icao'] . '" selected="selected">' . $aircraft_type['aircraft_name'] . ' (' . $aircraft_type['aircraft_icao'] . ')</option>';
        } else {
            print '<option value="' . $aircraft_type['aircraft_icao'] . '">' . $aircraft_type['aircraft_name'] . ' (' . $aircraft_type['aircraft_icao'] . ')</option>';
        }
    }
    print '</select>';
    print '<button type="submit"><i class="fa fa-angle-double-right"></i></button>';
    print '</form>';
    print '</div>';
    if ($_GET['aircraft_type'] != "NA") {
        print '<div class="info column">';
        print '<h1>' . $spotter_array[0]['aircraft_name'] . ' (' . $spotter_array[0]['aircraft_type'] . ')</h1>';
        print '<div><span class="label">Name</span>' . $spotter_array[0]['aircraft_name'] . '</div>';
開發者ID:linuxpronl,項目名稱:FlightAirMap,代碼行數:31,代碼來源:aircraft-statistics-route.php

示例2: foreach

<?php

require 'require/class.Connection.php';
require 'require/class.Spotter.php';
$spotter_array = Spotter::getSpotterDataByAircraft($_GET['aircraft_type'], "0,1", "");
if (!empty($spotter_array)) {
    $title = 'Most Common Routes from ' . $spotter_array[0]['aircraft_name'] . ' (' . $spotter_array[0]['aircraft_type'] . ')';
    require 'header.php';
    print '<div class="select-item">';
    print '<form action="' . $globalURL . '/aircraft" method="post">';
    print '<select name="aircraft_type" class="selectpicker" data-live-search="true">';
    print '<option></option>';
    $aircraft_types = Spotter::getAllAircraftTypes();
    foreach ($aircraft_types as $aircraft_type) {
        if ($_GET['aircraft_type'] == $aircraft_type['aircraft_icao']) {
            print '<option value="' . $aircraft_type['aircraft_icao'] . '" selected="selected">' . $aircraft_type['aircraft_name'] . ' (' . $aircraft_type['aircraft_icao'] . ')</option>';
        } else {
            print '<option value="' . $aircraft_type['aircraft_icao'] . '">' . $aircraft_type['aircraft_name'] . ' (' . $aircraft_type['aircraft_icao'] . ')</option>';
        }
    }
    print '</select>';
    print '<button type="submit"><i class="fa fa-angle-double-right"></i></button>';
    print '</form>';
    print '</div>';
    if ($_GET['aircraft_type'] != "NA") {
        print '<div class="info column">';
        print '<h1>' . $spotter_array[0]['aircraft_name'] . ' (' . $spotter_array[0]['aircraft_type'] . ')</h1>';
        print '<div><span class="label">Name</span>' . $spotter_array[0]['aircraft_name'] . '</div>';
        print '<div><span class="label">ICAO</span>' . $spotter_array[0]['aircraft_type'] . '</div>';
        print '<div><span class="label">Manufacturer</span><a href="' . $globalURL . '/manufacturer/' . strtolower(str_replace(" ", "-", $spotter_array[0]['aircraft_manufacturer'])) . '">' . $spotter_array[0]['aircraft_manufacturer'] . '</a></div>';
        print '</div>';
開發者ID:hzmarrou,項目名稱:FlightAirMap,代碼行數:31,代碼來源:aircraft-statistics-route.php


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