當前位置: 首頁>>代碼示例>>PHP>>正文


PHP XWB_plugin::statUrl方法代碼示例

本文整理匯總了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>&nbsp;|&nbsp;技術支持:<a href="http://x.weibo.com/" target="_blank">Xweibo官網</a></p></div>
		</div>
		<div class="clear"></div>
		
		<?php 
}
?>
		
		<div class="footer">Copyright &copy; 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>
開發者ID:chibimiku,項目名稱:xweibo_for_discuz_x2_php7,代碼行數:30,代碼來源:step3.php

示例2: foreach

                </div>
                <?php 
}
?>
                
            </div>
            

            
            
            
            
            
        </div>
        <b class="bg_regBot">&nbsp;</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>
開發者ID:Jaedeok-seol,項目名稱:discuz_template,代碼行數:30,代碼來源:share_msg.tpl.php

示例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;
 }
開發者ID:YouthAndra,項目名稱:huaitaoo2o,代碼行數:24,代碼來源:core.class.php


注:本文中的XWB_plugin::statUrl方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。