本文整理匯總了PHP中XWB_plugin::statUrl方法的典型用法代碼示例。如果您正苦於以下問題:PHP XWB_plugin::statUrl方法的具體用法?PHP XWB_plugin::statUrl怎麽用?PHP XWB_plugin::statUrl使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類XWB_plugin
的用法示例。
在下文中一共展示了XWB_plugin::statUrl方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: array
<!--安裝失敗的信息:給出提示信息-->
<div class="mainTxt">
<hr />
<div class="con red"><p><strong>安裝失敗,安裝數據已全部回退。</strong></p></div>
<div class="con red"><p>如果您能將“初始化程序以及數據”提示信息,以及論壇地址、論壇版本和論壇字符編碼等信息反饋給我們(比如<a href="http://bbs.x.weibo.com/forum/forumdisplay.php?fid=9" target="_blank">官方論壇</a>),將有助於我們的產品改進,感謝您的支持!</p></div>
<div class="con red"><p>聯係郵箱:<a href="mailto:xweibo@vip.sina.com">mailto:xweibo@vip.sina.com</a> | 技術支持:<a href="http://x.weibo.com/" target="_blank">Xweibo官網</a></p></div>
</div>
<div class="clear"></div>
<?php
}
?>
<div class="footer">Copyright © 1996-2010 SINA</div>
</div>
</div>
<?php
//統計上報[安裝]
$xwb_statType = 'in';
$xwb_statArgs = array();
$xwb_statArgs['akey'] = $appkey;
$xwb_statArgs['uid'] = 0;
$xwb_statArgs['domain'] = str_replace(array('http://', 'https://'), '', XWB_plugin::baseUrl());
$xwb_statArgs['qq'] = $qq;
echo XWB_plugin::statUrl($xwb_statType, $xwb_statArgs, true);
?>
</body>
</html>
示例2: foreach
</div>
<?php
}
?>
</div>
</div>
<b class="bg_regBot"> </b>
</div>
</div>
<?php
$xwb_sess = XWB_plugin::getUser();
$xwb_statInfo = $xwb_sess->getStat();
foreach ($xwb_statInfo as $k => $stat) {
$xwb_statType = isset($stat['xt']) ? (string) $stat['xt'] : 'unknown';
echo XWB_plugin::statUrl($xwb_statType, $stat, true);
}
if (!empty($xwb_statInfo)) {
$xwb_sess->clearStat();
}
?>
</body>
</html>
示例3: statReport
/**
* 統計上報(通過服務器進行上報)
* @param string $type stat類型
* @param array $args stat參數
* @return bool
*/
function statReport($type, $args = array())
{
if (defined('XWB_P_STAT_DISABLE')) {
return false;
}
$statUrl = XWB_plugin::statUrl($type, $args);
if ('' == $statUrl) {
return false;
}
if (!class_exists('fsockopenHttp')) {
require_once "fsockopenHttp.class.php";
}
$httpObj = new fsockopenHttp();
$httpObj->setUrl($statUrl);
$httpObj->max_retries = 0;
$httpObj->request();
return true;
}