本文整理汇总了PHP中Spotter::countAllArrivalAirports方法的典型用法代码示例。如果您正苦于以下问题:PHP Spotter::countAllArrivalAirports方法的具体用法?PHP Spotter::countAllArrivalAirports怎么用?PHP Spotter::countAllArrivalAirports使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Spotter
的用法示例。
在下文中一共展示了Spotter::countAllArrivalAirports方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
chart.draw(data, options);
}
</script>';
?>
<div class="more">
<a href="<?php
print $globalURL;
?>
/statistics/airport-departure" class="btn btn-default btn" role="button">See full statistic»</a>
</div>
</div>
<div class="col-md-6">
<h2>Top 10 Most Common Arrival Airports</h2>
<?php
$airport_airport_array2 = $Spotter->countAllArrivalAirports();
print '<div id="chart4" class="chart" width="100%"></div>
<script>
google.load("visualization", "1", {packages:["geochart"]});
google.setOnLoadCallback(drawCharts4);
$(window).resize(function(){
drawCharts4();
});
function drawCharts4() {
var data = google.visualization.arrayToDataTable([
["Airport", "# of Times"],';
$airport_data2 = '';
foreach ($airport_airport_array2 as $airport_item2) {
$name2 = $airport_item2['airport_arrival_city'] . ', ' . $airport_item2['airport_arrival_country'] . ' (' . $airport_item2['airport_arrival_icao'] . ')';
$name2 = str_replace("'", "", $name2);
示例2: drawCharts
require 'require/class.Connection.php';
require 'require/class.Spotter.php';
$title = "Statistic - Most common Arrival Airport";
require 'header.php';
include 'statistics-sub-menu.php';
?>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<div class="info">
<h1>Most common Arrival Airport</h1>
</div>
<p>Below are the <strong>Top 10</strong> most common arrival airports.</p>
<?php
$airport_airport_array = Spotter::countAllArrivalAirports();
?>
<script>
google.load("visualization", "1", {packages:["geochart"]});
google.setOnLoadCallback(drawCharts);
$(window).resize(function(){
drawCharts();
});
function drawCharts() {
var data = google.visualization.arrayToDataTable([
["Airport", "# of Times"],
<?php
$airport_data = '';
foreach ($airport_airport_array as $airport_item) {