⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 api.php

📁 一款可以和GOOGLE媲美的开源统计系统,运用AJAX.功能强大. 无色提示:按照需要PHP5.1以上和MySQL数据库支持。
💻 PHP
字号:
<?php/** * Piwik - Open source web analytics *  * @link http://piwik.org * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later * @version $Id: API.php 482 2008-05-18 17:22:35Z matt $ *  * @package Piwik_DBStats *//** *  * @package Piwik_DBStats_API */class Piwik_DBStats_API extends Piwik_Apiable{	static private $instance = null;	static public function getInstance()	{		if (self::$instance == null)		{            			$c = __CLASS__;			self::$instance = new $c();		}		return self::$instance;	} 	static public function getDBStatus()	{		Piwik::checkUserIsSuperUser();		$configDb = Zend_Registry::get('config')->database->toArray();		// we decode the password. Password is html encoded because it's enclosed between " double quotes		$configDb['password'] = htmlspecialchars_decode($configDb['password']);		if(!isset($configDb['port']))		{			// before 0.2.4 there is no port specified in config file			$configDb['port'] = '3306';  		}		$link   = mysql_connect($configDb['host'], $configDb['username'], $configDb['password']);		$status = mysql_stat($link);		mysql_close($link);		return $status;	}		static private function get_size($size)	{		$bytes = array('','K','M','G','T');		foreach($bytes as $val) 		{			if($size > 1024)			{				$size = $size / 1024;			}			else			{	    		break;			}		}		return round($size, 1)." ".$val;	}		static public function getTableStatus($table, $field = '') 	{		Piwik::checkUserIsSuperUser();		$db = Zend_Registry::get('db');		// http://dev.mysql.com/doc/refman/5.1/en/show-table-status.html		$tables = $db->fetchAll("SHOW TABLE STATUS LIKE ?", $table);		if ($field == '')		{			return $tables[0];		}		else		{			return $tables[0][$field];		}	}	static public function getAllTablesStatus() 	{		Piwik::isUserIsSuperUser();		$db = Zend_Registry::get('db');		// http://dev.mysql.com/doc/refman/5.1/en/show-table-status.html		$tablesPiwik =  Piwik::getTablesInstalled();		$total = array('Name' => 'Total', 'Data_length' => 0, 'Index_length' => 0, 'Rows' => 0);		foreach($tablesPiwik as $table) 		{			$t = self::getTableStatus($table);			$total['Data_length'] += $t['Data_length'];			$total['Index_length'] += $t['Index_length'];			$total['Rows'] += $t['Rows'];						$t['Total_length'] = self::get_size($t['Index_length']+$t['Data_length']);			$t['Data_length'] = self::get_size($t['Data_length']);			$t['Index_length'] = self::get_size($t['Index_length']);			$t['Rows'] = self::get_size($t['Rows']);			$tables[] = $t;		}		$total['Total_length'] = self::get_size($total['Data_length']+$total['Index_length']);		$total['Data_length'] = self::get_size($total['Data_length']);		$total['Index_length'] = self::get_size($total['Index_length']);		$total['TotalRows'] = self::get_size($total['Rows']);		$tables['Total'] = $total;				return $tables;	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -