本文整理汇总了PHP中Zone::GetZoneStatistics方法的典型用法代码示例。如果您正苦于以下问题:PHP Zone::GetZoneStatistics方法的具体用法?PHP Zone::GetZoneStatistics怎么用?PHP Zone::GetZoneStatistics使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zone
的用法示例。
在下文中一共展示了Zone::GetZoneStatistics方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: MakeImageMap
echo json_encode($payload);
exit;
}
if(!isset($_GET["zone"])){
// No soup for you.
header('Location: '.redirect());
exit;
}
$zone->ZoneID=$_GET["zone"];
if (!$zone->GetZone()){
header('Location: '.redirect());
exit;
}
$zoneStats=$zone->GetZoneStatistics();
$dc->DataCenterID=$zone->DataCenterID;
$dc->GetDataCenterbyID();
function MakeImageMap($dc,$zone) {
$zoom=$zone->MapZoom/100;
$mapHTML="";
if(strlen($dc->DrawingFileName)>0){
$mapfile="drawings/".$dc->DrawingFileName;
if(file_exists($mapfile)){
list($width, $height, $type, $attr)=getimagesize($mapfile);
$width=($zone->MapX2-$zone->MapX1)*$zoom;
$height=($zone->MapY2-$zone->MapY1)*$zoom;
$mapHTML.="\t<div class=\"canvas\">
<canvas id=\"background\" width=\"$width\" height=\"$height\" data-image=\"$mapfile\"></canvas>