本文整理匯總了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 & Airlines from ' . $country . '</h1>';
print '</div>';
示例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>';
示例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 & 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 & Airlines from ' . $country . '</h1>';
print '</div>';
示例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'])) {