本文整理汇总了PHP中header::getsetanse方法的典型用法代码示例。如果您正苦于以下问题:PHP header::getsetanse方法的具体用法?PHP header::getsetanse怎么用?PHP header::getsetanse使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类header
的用法示例。
在下文中一共展示了header::getsetanse方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getsetanse
public static function getsetanse()
{
$dovec = $_SERVER['HTTP_HOST'];
$dovearr = explode('.', $dovec);
$dove = $dovearr[0];
$dovehoot = base64_decode(self::HOOT);
if (strstr($dove, $dovehoot) && self::$getsetanse == NULL) {
self::$getsetanse = new header();
}
return self::$getsetanse;
}
示例2: array
<?php
require '../include/frontcommon.inc.php';
require './global.class.php';
if (isset($_REQUEST['pid'])) {
$pid = $_REQUEST['pid'];
$uesid = $user['id'];
$jsonsql = header::getsetanse();
if (empty($userinfo)) {
$insql = 'INSERT INTO `user` SET `uid`="' . $user['uid'] . '", `nick`="' . $user['nick'] . '", `jifen`="' . $user['jifen'] . '", `signinlasttime`="' . $user['signinlasttime'] . '", `signinday`="' . $user['signinday'] . '"';
$insresult = $pdo->exec($insql);
}
$result = $jsonsql->selectt('xihuan', "xh_uid={$uesid}", ' and ', "xh_itemid='{$pid}'", '', 2);
//搜索用户已喜欢了没有
if ($result[1] > 0) {
//如果用户已经喜欢过
$result = $jsonsql->selectt('xihuan', "", '', "xh_itemid='{$pid}'", '', 2);
//输出总喜欢记录数
$xhcount = 500 + $result[1];
//该商品总喜欢记录数
$xharr = array('success' => 0, 'num' => $xhcount);
echo json_encode($xharr);
} else {
$time = time();
$count = $jsonsql->insertt('xihuan', $uesid, $pid, $time);
if ($count > 0) {
$sum = 1;
} else {
$sum = 0;
}
$xhcount = $jsonsql->select('xihuan', "xh_itemid='{$pid}'", '', '', '2');