本文整理汇总了PHP中cache::inc方法的典型用法代码示例。如果您正苦于以下问题:PHP cache::inc方法的具体用法?PHP cache::inc怎么用?PHP cache::inc使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cache
的用法示例。
在下文中一共展示了cache::inc方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: prepare
public function prepare()
{
global $schema, $asset_info, $settings;
$this->template = "item";
$this->tab = 'item';
$b = new backpack(false);
$item_stats = cache::Memcached()->get('item_stats');
if ($item_stats === false) {
$json = file_get_contents($settings['cache']['folder'] . 'item_stats.json');
$item_stats = json_decode($json, true);
cache::Memcached()->set('item_stats', $item_stats, time() + 60 * 15);
}
cache::inc('tf2_item_info.php');
$defindex = $this->request[1];
$url_name = $this->request[0];
$s = $item_stats['items'][$defindex];
$si = $schema['items'][$defindex];
$info = $asset_info[$defindex];
//var_dump($info);
$i = $b->get_item($si);
$this->canonical = sprintf('http://tf2stats.net/item/%s/%s/', $i['name_url'], $i['defindex']);
$i['owned'] = $s['unique_total'] / $item_stats['total_players'];
$i['equipped'] = $s['total_equipped'] / $item_stats['total_players'];
$i['owned_equipped'] = $s['unique_total'] > 0 ? $s['total_equipped'] / $s['unique_total'] : 0;
// Colors
if (!empty($s['colors'])) {
arsort($s['colors']);
foreach ($s['colors'] as $c => $num) {
$id = get_paint_by_color($c);
$si = $schema['items'][$id];
$it = $b->get_item($si);
$name = $it['name'];
if (strlen($name) > 25) {
$name = substr($name, 0, 25) . "...";
}
//var_dump($it);
$html = dechex($c);
if ($html === '0') {
continue;
}
//$html = '914c3f';
$key = $num;
while ($i['colors'][$key] > 0) {
$key++;
}
$i['colors'][$key] = array('name' => $name, 'color' => $html, 'num' => $num / $s['total_colored']);
}
}
// qualities
if (!empty($s['qualities'])) {
arsort($s['qualities']);
foreach ($s['qualities'] as $c => $num) {
$key = $num;
while ($i['qualities'][$key] > 0) {
$key++;
}
$quality = int_to_quality($c);
$label = quality_to_label($quality);
//$color = quality_to_color($quality);
$i['qualities'][$key] = array('color' => $color, 'num' => $num / $s['total'], 'label' => $label, 'quality' => $quality);
}
}
// Origins
if (!empty($s['origins'])) {
arsort($s['origins']);
foreach ($s['origins'] as $c => $num) {
$key = $num;
while ($i['origins'][$key] > 0) {
$key++;
}
$label = int_to_origin($c);
//$color = quality_to_color($quality);
$i['origins'][$key] = array('num' => $num / $s['total'], 'label' => $label);
}
arsort($s['effects']);
}
// effects
if (!empty($s['effects'])) {
$total_effects = 0;
foreach ($s['effects'] as $c => $num) {
$total_effects += $num;
}
foreach ($s['effects'] as $c => $num) {
$t = $s['total_effect'] - $s['effects']['-1'];
if ($c == -1) {
continue;
}
$key = $num;
while ($i['effects'][$key] > 0) {
$key++;
}
$label = int_to_effect($c);
$i['effects'][$key] = array('color' => $color, 'num' => $num / $total_effects, 'label' => $label);
}
}
if (!empty($i['used_by_classes'])) {
if (count($i['used_by_classes']['class']) < 1) {
for ($c = 0; $c < 9; $c++) {
$num = $s['equipped'][$c];
if ($s['total_equipped'] > 0) {
//.........这里部分代码省略.........
示例2: array
<?php
require_once 'cache.php';
cache::inc('tf2_items_schema.php');
cache::inc('tf2_language_english.php');
// SCHEMA FIX! HACK HACK HACKKKK
global $schema, $CRATE_CONTENTS;
$schema['items'][124]['item_slot'] = '';
$hides = array(25, 28, 195, 196, 142, 144);
foreach ($hides as $h) {
$schema['attributes'][$h]['hidden'] = 1;
}
// END HACKY CODE
// Supply crates! (TODO: move this somewhere else plz)
define('CRATE_SPECIAL_ITEM', 8000);
$CRATE_CONTENTS = array(1 => array(173, 142, 128, 130, 247, 248, 5020, 5039, 5040, CRATE_SPECIAL_ITEM), 2 => array(228, 220, 224, 255, 246, 250, 241, 5031, 5037, CRATE_SPECIAL_ITEM), 3 => array(232, 163, 153, 150, 249, 251, 5044, 5040, CRATE_SPECIAL_ITEM), 4 => array(226, 154, 225, 174, 185, 253, 241, 5039, CRATE_SPECIAL_ITEM), 5 => array(5020, 214, 133, 155, 181, 178, 177, 5030, CRATE_SPECIAL_ITEM), 6 => array(329, 317, 331, 326, 327, 340, 319, 341, 339, 322, 342, 330, 315, 321, 323, 316, 337, 338, 314, 324, 313, CRATE_SPECIAL_ITEM), 7 => array(131, 127, 232, 47, 252, 216, 219, 5044, 5046, CRATE_SPECIAL_ITEM), 8 => array(45, 46, 56, 53, 291, 290, 223, 241, 5042, CRATE_SPECIAL_ITEM), 9 => array(5051, 5052, 5053, 5054, 5055, 5056, 227, CRATE_SPECIAL_ITEM));
// END supply crates
class backpack
{
private $id64;
private $error;
private $info;
public $equipped;
public $items;
public $fresh = false;
function __construct($player, $multi = false)
{
global $settings;
if (!$player) {
return;
}