当前位置: 首页>>代码示例>>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;未经允许,请勿转载。