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


PHP Stats::store方法代码示例

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


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

示例1: isset

    } else {
        $colour = $settings['colour'];
    }
}
// Default to 10 px height if they set no height.
$settings['currentHeight'] = isset($_GET['height']) && $_GET['height'] > $settings['minHeight'] ? $_GET['height'] : $settings['currentHeight'];
// Store Height
$store['height'] = $settings['currentHeight'];
// Stats class include
if (!(include_once './Stats.class.php')) {
    die('Error including Stats.class.php');
}
// Instantiate instance of class
$stats = new Stats();
// Store the stats!
$stats->store($store);
// Set the content-type to png
header("Content-type: image/png");
// Create an image at the right dimensions.
$im = imagecreate(4, $settings['currentHeight']);
// Declare some colours
$white = imagecolorallocate($im, 255, 255, 255);
if (count($colour) == 4) {
    $line = imagecolorallocatealpha($im, $colour[0], $colour[1], $colour[2], 127 - $colour[3] * 127);
} else {
    $line = imagecolorallocatealpha($im, $colour[0], $colour[1], $colour[2], 100);
}
// Set the image to use white as transparent
imagecolortransparent($im, $white);
// Draw a line starting bottom left, for 2px along
imageline($im, 0, $settings['currentHeight'] - 1, 2, $settings['currentHeight'] - 1, $line);
开发者ID:JPKCom,项目名称:Basehold.it,代码行数:31,代码来源:image.php

示例2: updateStats

 public function updateStats()
 {
     $stats = $this->driver->info();
     Stats::store('stats', $stats);
 }
开发者ID:mikejw,项目名称:elib-base,代码行数:5,代码来源:Worker.php


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