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


PHP Spotter::getAllCountries方法代码示例

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


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

示例1: ucwords

 $limit_previous_2 = $limit_end - $absolute_difference;
 $country = ucwords(str_replace("-", " ", $_GET['country']));
 $page_url = $globalURL . '/country/' . $_GET['country'];
 if (isset($_GET['sort'])) {
     $spotter_array = Spotter::getSpotterDataByCountry($country, $limit_start . "," . $absolute_difference, $_GET['sort']);
 } else {
     $spotter_array = Spotter::getSpotterDataByCountry($country, $limit_start . "," . $absolute_difference, '');
 }
 if (!empty($spotter_array)) {
     $title = 'Detailed View for Airports & Airlines from ' . $country;
     require 'header.php';
     print '<div class="select-item">';
     print '<form action="' . $globalURL . '/country" method="post">';
     print '<select name="country" class="selectpicker" data-live-search="true">';
     print '<option></option>';
     $all_countries = Spotter::getAllCountries();
     foreach ($all_countries as $all_country) {
         if ($country == $all_country['country']) {
             print '<option value="' . strtolower(str_replace(" ", "-", $all_country['country'])) . '" selected="selected">' . $all_country['country'] . '</option>';
         } else {
             print '<option value="' . strtolower(str_replace(" ", "-", $all_country['country'])) . '">' . $all_country['country'] . '</option>';
         }
     }
     print '</select>';
     print '<button type="submit"><i class="fa fa-angle-double-right"></i></button>';
     print '</form>';
     print '</div>';
     if ($_GET['country'] != "NA") {
         print '<div class="info column">';
         print '<h1>Airports &amp; Airlines from ' . $country . '</h1>';
         print '</div>';
开发者ID:hzmarrou,项目名称:FlightAirMap,代码行数:31,代码来源:country-detailed.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">';
     $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>';
             $output .= '<loc>' . $globalURL . '/country/' . strtolower(str_replace(" ", "-", $country_item['country'])) . '</loc>';
             $output .= '<lastmod>' . date("c", time()) . '</lastmod>';
             $output .= '<changefreq>daily</changefreq>';
             $output .= '</url>';
         }
         $output .= '</urlset>';
     } else {
         if ($_GET['type'] == "ident") {
             $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">';
             $ident_names = Spotter::getAllIdents();
             foreach ($ident_names as $ident_item) {
                 $output .= '<url>';
开发者ID:hzmarrou,项目名称:FlightAirMap,代码行数:31,代码来源:sitemap.php

示例3: ucwords

 $limit_previous_2 = $limit_end - $absolute_difference;
 $country = ucwords(str_replace("-", " ", $_GET['country']));
 $page_url = $globalURL . '/country/' . $_GET['country'];
 if (isset($_GET['sort'])) {
     $spotter_array = $Spotter->getSpotterDataByCountry($country, $limit_start . "," . $absolute_difference, $_GET['sort']);
 } else {
     $spotter_array = $Spotter->getSpotterDataByCountry($country, $limit_start . "," . $absolute_difference, '');
 }
 if (!empty($spotter_array)) {
     $title = 'Detailed View for Airports &amp; Airlines from ' . $country;
     require 'header.php';
     print '<div class="select-item">';
     print '<form action="' . $globalURL . '/country" method="post">';
     print '<select name="country" class="selectpicker" data-live-search="true">';
     print '<option></option>';
     $all_countries = $Spotter->getAllCountries();
     foreach ($all_countries as $all_country) {
         if ($country == $all_country['country']) {
             print '<option value="' . strtolower(str_replace(" ", "-", $all_country['country'])) . '" selected="selected">' . $all_country['country'] . '</option>';
         } else {
             print '<option value="' . strtolower(str_replace(" ", "-", $all_country['country'])) . '">' . $all_country['country'] . '</option>';
         }
     }
     print '</select>';
     print '<button type="submit"><i class="fa fa-angle-double-right"></i></button>';
     print '</form>';
     print '</div>';
     if ($_GET['country'] != "NA") {
         print '<div class="info column">';
         print '<h1>Airports &amp; Airlines from ' . $country . '</h1>';
         print '</div>';
开发者ID:dedevillela,项目名称:BravoHotelZulu,代码行数:31,代码来源:country-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">';
     $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>';
             $output .= '<loc>' . 'http://' . $_SERVER['HTTP_HOST'] . $globalURL . '/country/' . strtolower(str_replace(" ", "-", $country_item['country'])) . '</loc>';
             $output .= '<lastmod>' . date("c", time()) . '</lastmod>';
             $output .= '<changefreq>daily</changefreq>';
             $output .= '</url>';
         }
         $output .= '</urlset>';
     } else {
         if (isset($_GET['type']) && $_GET['type'] == "ident") {
             $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">';
             $ident_names = $Spotter->getAllIdents();
             foreach ($ident_names as $ident_item) {
                 if (ctype_alnum($ident_item['ident'])) {
开发者ID:linuxpronl,项目名称:FlightAirMap,代码行数:31,代码来源:sitemap.php


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