本文整理汇总了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>';
示例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>';