当前位置: 首页>>代码示例>>PHP>>正文


PHP Spotter::getAllManufacturers方法代码示例

本文整理汇总了PHP中Spotter::getAllManufacturers方法的典型用法代码示例。如果您正苦于以下问题:PHP Spotter::getAllManufacturers方法的具体用法?PHP Spotter::getAllManufacturers怎么用?PHP Spotter::getAllManufacturers使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Spotter的用法示例。


在下文中一共展示了Spotter::getAllManufacturers方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: header

require 'require/class.Spotter.php';
if (!isset($_GET['aircraft_manufacturer'])) {
    header('Location: ' . $globalURL . '/manufacturer');
    die;
}
$Spotter = new Spotter();
$manufacturer = ucwords(str_replace("-", " ", $_GET['aircraft_manufacturer']));
$spotter_array = $Spotter->getSpotterDataByManufacturer($manufacturer, "0,1", $_GET['sort']);
if (!empty($spotter_array)) {
    $title = 'Most Common Time of Day from ' . $manufacturer;
    require 'header.php';
    print '<div class="select-item">';
    print '<form action="' . $globalURL . '/manufacturer" method="post">';
    print '<select name="aircraft_manufacturer" class="selectpicker" data-live-search="true">';
    print '<option></option>';
    $all_manufacturers = $Spotter->getAllManufacturers();
    foreach ($all_manufacturers as $all_manufacturer) {
        if ($_GET['aircraft_manufacturer'] == strtolower(str_replace(" ", "-", $all_manufacturer['aircraft_manufacturer']))) {
            print '<option value="' . strtolower(str_replace(" ", "-", $all_manufacturer['aircraft_manufacturer'])) . '" selected="selected">' . $all_manufacturer['aircraft_manufacturer'] . '</option>';
        } else {
            print '<option value="' . strtolower(str_replace(" ", "-", $all_manufacturer['aircraft_manufacturer'])) . '">' . $all_manufacturer['aircraft_manufacturer'] . '</option>';
        }
    }
    print '</select>';
    print '<button type="submit"><i class="fa fa-angle-double-right"></i></button>';
    print '</form>';
    print '</div>';
    print '<div class="info column">';
    print '<h1>' . $manufacturer . '</h1>';
    print '</div>';
    include 'manufacturer-sub-menu.php';
开发者ID:linuxpronl,项目名称:FlightAirMap,代码行数:31,代码来源:manufacturer-statistics-time.php

示例2: foreach

     $output .= '<?xml version="1.0" encoding="UTF-8"?>';
     $output .= '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">';
     $airport_names = Spotter::getAllAirportNames();
     foreach ($airport_names as $airport_item) {
         $output .= '<url>';
         $output .= '<loc>' . $globalURL . '/airport/' . $airport_item['airport_icao'] . '</loc>';
         $output .= '<lastmod>' . date("c", time()) . '</lastmod>';
         $output .= '<changefreq>daily</changefreq>';
         $output .= '</url>';
     }
     $output .= '</urlset>';
 } else {
     if ($_GET['type'] == "manufacturer") {
         $output .= '<?xml version="1.0" encoding="UTF-8"?>';
         $output .= '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">';
         $manufacturer_names = Spotter::getAllManufacturers();
         foreach ($manufacturer_names as $manufacturer_item) {
             $output .= '<url>';
             $output .= '<loc>' . $globalURL . '/manufacturer/' . strtolower(str_replace(" ", "-", $manufacturer_item['aircraft_manufacturer'])) . '</loc>';
             $output .= '<lastmod>' . date("c", time()) . '</lastmod>';
             $output .= '<changefreq>daily</changefreq>';
             $output .= '</url>';
         }
         $output .= '</urlset>';
     } else {
         if ($_GET['type'] == "country") {
             $output .= '<?xml version="1.0" encoding="UTF-8"?>';
             $output .= '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">';
             $country_names = Spotter::getAllCountries();
             foreach ($country_names as $country_item) {
                 $output .= '<url>';
开发者ID:hzmarrou,项目名称:FlightAirMap,代码行数:31,代码来源:sitemap.php

示例3: ucwords

 $limit_previous_2 = $limit_end - $absolute_difference;
 $manufacturer = ucwords(str_replace("-", " ", $_GET['aircraft_manufacturer']));
 $page_url = $globalURL . '/manufacturer/' . $_GET['aircraft_manufacturer'];
 if (isset($_GET['sort'])) {
     $spotter_array = Spotter::getSpotterDataByManufacturer($manufacturer, $limit_start . "," . $absolute_difference, $_GET['sort']);
 } else {
     $spotter_array = Spotter::getSpotterDataByManufacturer($manufacturer, $limit_start . "," . $absolute_difference, '');
 }
 if (!empty($spotter_array)) {
     $title = 'Detailed View for ' . $manufacturer;
     require 'header.php';
     print '<div class="select-item">';
     print '<form action="' . $globalURL . '/manufacturer" method="post">';
     print '<select name="aircraft_manufacturer" class="selectpicker" data-live-search="true">';
     print '<option></option>';
     $all_manufacturers = Spotter::getAllManufacturers();
     foreach ($all_manufacturers as $all_manufacturer) {
         if ($_GET['aircraft_manufacturer'] == strtolower(str_replace(" ", "-", $all_manufacturer['aircraft_manufacturer']))) {
             print '<option value="' . strtolower(str_replace(" ", "-", $all_manufacturer['aircraft_manufacturer'])) . '" selected="selected">' . $all_manufacturer['aircraft_manufacturer'] . '</option>';
         } else {
             print '<option value="' . strtolower(str_replace(" ", "-", $all_manufacturer['aircraft_manufacturer'])) . '">' . $all_manufacturer['aircraft_manufacturer'] . '</option>';
         }
     }
     print '</select>';
     print '<button type="submit"><i class="fa fa-angle-double-right"></i></button>';
     print '</form>';
     print '</div>';
     print '<div class="info column">';
     print '<h1>' . $manufacturer . '</h1>';
     print '</div>';
     print '<div class="table column">';
开发者ID:hzmarrou,项目名称:FlightAirMap,代码行数:31,代码来源:manufacturer-detailed.php

示例4: foreach

     $output .= '<?xml version="1.0" encoding="UTF-8"?>';
     $output .= '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">';
     $airport_names = $Spotter->getAllAirportNames();
     foreach ($airport_names as $airport_item) {
         $output .= '<url>';
         $output .= '<loc>' . 'http://' . $_SERVER['HTTP_HOST'] . $globalURL . '/airport/' . $airport_item['airport_icao'] . '</loc>';
         $output .= '<lastmod>' . date("c", time()) . '</lastmod>';
         $output .= '<changefreq>daily</changefreq>';
         $output .= '</url>';
     }
     $output .= '</urlset>';
 } else {
     if (isset($_GET['type']) && $_GET['type'] == "manufacturer") {
         $output .= '<?xml version="1.0" encoding="UTF-8"?>';
         $output .= '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">';
         $manufacturer_names = $Spotter->getAllManufacturers();
         foreach ($manufacturer_names as $manufacturer_item) {
             $output .= '<url>';
             $output .= '<loc>' . 'http://' . $_SERVER['HTTP_HOST'] . $globalURL . '/manufacturer/' . strtolower(str_replace(" ", "-", $manufacturer_item['aircraft_manufacturer'])) . '</loc>';
             $output .= '<lastmod>' . date("c", time()) . '</lastmod>';
             $output .= '<changefreq>daily</changefreq>';
             $output .= '</url>';
         }
         $output .= '</urlset>';
     } else {
         if (isset($_GET['type']) && $_GET['type'] == "country") {
             $output .= '<?xml version="1.0" encoding="UTF-8"?>';
             $output .= '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">';
             $country_names = $Spotter->getAllCountries();
             foreach ($country_names as $country_item) {
                 $output .= '<url>';
开发者ID:linuxpronl,项目名称:FlightAirMap,代码行数:31,代码来源:sitemap.php


注:本文中的Spotter::getAllManufacturers方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。