12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
- /**
- * @version 1.0
- */
- class CS {
- private $siteId;
- private $scheme;
- private $imageDomain = 'c.cnzz.com';
- /**
- *
- * @param Integer $siteId 站点ID
- */
- public function __construct($siteId) {
- $this->setAccount($siteId);
- $this->initScheme();
- }
- /**
- * 设置站点ID
- * @param type $siteId
- */
- public function setAccount($siteId) {
- $this->siteId = $siteId;
- }
- private function initScheme() {
- $this->scheme = $this->getScheme();
- }
- /**
- * 得到url中的scheme
- * @return String
- */
- private function getScheme() {
- return (isset($_SERVER["HTTPS"]) && ($_SERVER["HTTPS"] !== "off") ? 'https://' : 'http://');
- }
- /**
- *
- * @return String 回传数据的请求字符串
- */
- public function trackPageView() {
- return $this->getImageUrl();
- }
- private function getImageUrl() {
- $imageLocation = $this->scheme . $this->imageDomain . '/wapstat.php';
- $referer = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '';
- $query = array();
- array_push($query, 'siteid=' . $this->siteId * 1);
- array_push($query, 'r=' . urlencode($referer));
- array_push($query, 'rnd=' . mt_rand(1, 2147483647));
- $imageUrl = $imageLocation . '?' . implode('&', $query);
- return $imageUrl;
- }
- }
- function _cnzzTrackPageView($siteId) {
- $cs = new CS($siteId);
- return $cs->trackPageView();
- }
- ?>
|