復制代碼 代碼如下:
<?php
//我們的域名,這裡可以不唯一的
$domain = 'localhost';
//這個應該是CNZZ授權給shopex的加密密鑰,如果錯了就不能快捷申請賬號
$encodestr = 'A34dfwfF';
//這個就是CNZZ授權給shopex的快捷申請賬號的URL地址
$url = 'http://wss.cnzz.com/user/companion/shopex.php?domain='.$domain.'&key='.md5($domain.$encodestr);
//獲取網頁內容得到這樣的一個字符串 80772914@3780692425
$res = file_get_contents($url);
//左邊是CNZZ統計的站點id,右邊是密碼
$res = explode('@',$res);
//登錄到CNZZ統計的URL,把下面的地址復制到地址欄就可以看到效果了
//http://wss.cnzz.com/user/companion/shopex_login.php?site_id=80772914&password=3780692425
//會自動跳轉到 http://wss.cnzz.com/v1/main.php?siteid=80772914&s=main_stat
$login = 'http://wss.cnzz.com/user/companion/shopex_login.php?site_id='.$res[0].'&password='.$res[1];
header("Location:$login");