• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP getpostinfo函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中getpostinfo函数的典型用法代码示例。如果您正苦于以下问题:PHP getpostinfo函数的具体用法?PHP getpostinfo怎么用?PHP getpostinfo使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了getpostinfo函数的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: buy

 function buy()
 {
     global $_G;
     if (!empty($_G['gp_id'])) {
         $thread = getpostinfo($_G['gp_id'], 'tid', array('fid', 'authorid'));
         $this->_check($thread);
     }
 }
开发者ID:Kingson4Wu,项目名称:php_demo,代码行数:8,代码来源:magic_sofa.php


示例2: buy

 function buy()
 {
     global $_G;
     if (!empty($_GET['id'])) {
         $thread = getpostinfo($_GET['id'], 'tid', array('fid'));
         $this->_check($thread['fid']);
     }
 }
开发者ID:softhui,项目名称:discuz,代码行数:8,代码来源:magic_stick.php


示例3: buy

 function buy()
 {
     global $_G;
     if (!empty($_G['gp_id'])) {
         list($_G['gp_id'], $_G['tid']) = explode(':', $_G['gp_id']);
         $post = getpostinfo($_G['gp_id'], 'pid', array('p.fid', 'p.authorid'));
         $this->_check($post);
     }
 }
开发者ID:Kingson4Wu,项目名称:php_demo,代码行数:9,代码来源:magic_repent.php


示例4: buy

 function buy()
 {
     global $_G;
     if (!empty($_GET['id'])) {
         $thread = getpostinfo($_GET['id'], 'tid', array('fid'));
         $this->_check($thread['fid']);
     }
     $this->parameters['expiration'] = $this->parameters['expiration'] ? intval($this->parameters['expiration']) : 1;
     magicshowtips(lang('magic/jack', 'jack_info', array('expiration' => $this->parameters['expiration'])));
 }
开发者ID:dalinhuang,项目名称:healthshop,代码行数:10,代码来源:magic_jack.php


示例5: exit

<?php

/*
	[Discuz!] (C)2001-2009 Comsenz Inc.
	This is NOT a freeware, use is subject to license terms

	$Id: magic_move.inc.php 16688 2008-11-14 06:41:07Z cnteacher $
*/
if (!defined('IN_DISCUZ')) {
    exit('Access Denied');
}
if (submitcheck('usesubmit')) {
    if (empty($tid) && empty($moveto)) {
        showmessage('magics_info_nonexistence');
    }
    $thread = getpostinfo($tid, 'tid', array('fid', 'tid', 'authorid', 'special'));
    checkmagicperm($magicperm['forum'], $thread['fid']);
    if ($thread['authorid'] != $discuz_uid) {
        showmessage('magics_operation_nopermission');
    }
    if ($thread['special']) {
        $query = $db->query("SELECT allowpostspecial FROM {$tablepre}forums WHERE fid='{$moveto}'");
        if (!substr(sprintf('%04b', $forum['allowpostspecial']), -$thread['special'], 1)) {
            showmessage('admin_move_nopermission');
        }
    }
    $query = $db->query("SELECT postperm FROM {$tablepre}forumfields WHERE fid='{$moveto}'");
    if ($forum = $db->fetch_array($query)) {
        if (!$forum['postperm'] && !$allowpost) {
            showmessage('group_nopermission');
        } elseif ($forum['postperm'] && !forumperm($forum['postperm'])) {
开发者ID:BGCX067,项目名称:f2cont-svn-to-git,代码行数:31,代码来源:magic_move.inc.php


示例6: exit

<?php

/*
	[Discuz!] (C)2001-2009 Comsenz Inc.
	This is NOT a freeware, use is subject to license terms

	$Id: magic_up.inc.php 19412 2009-08-29 01:48:51Z monkey $
*/
if (!defined('IN_DISCUZ')) {
    exit('Access Denied');
}
if (submitcheck('usesubmit')) {
    if (empty($tid)) {
        showmessage('magics_info_nonexistence');
    }
    $thread = getpostinfo($tid, 'tid', array('fid'));
    checkmagicperm($magicperm['forum'], $thread['fid']);
    $db->query("UPDATE {$tablepre}threads SET lastpost='{$timestamp}', moderated='1' WHERE tid='{$tid}'");
    usemagic($magicid, $magic['num']);
    updatemagiclog($magicid, '2', '1', '0', $tid);
    updatemagicthreadlog($tid, $magicid, $magic['identifier']);
    if ($thread['authorid'] != $discuz_uid) {
        sendnotice($thread['authorid'], 'magic_thread', 'systempm');
    }
    showmessage('magics_operation_succeed', '', 1);
}
function showmagic()
{
    global $tid, $lang;
    magicshowtype($lang['option'], 'top');
    magicshowsetting($lang['target_tid'], 'tid', $tid, 'text');
开发者ID:lilhorse,项目名称:cocoa,代码行数:31,代码来源:magic_up.inc.php


示例7: buy

 function buy()
 {
     global $_G;
     $id = !empty($_GET['id']) ? dhtmlspecialchars($_GET['id']) : '';
     $idtype = !empty($_GET['idtype']) ? dhtmlspecialchars($_GET['idtype']) : '';
     if (!empty($id) && $_GET['idtype'] == 'pid') {
         list($id, $_G['tid']) = explode(':', $id);
         $post = getpostinfo(intval($id), 'pid', array('p.fid', 'p.authorid'));
         $this->_check($post);
     }
 }
开发者ID:softhui,项目名称:discuz,代码行数:11,代码来源:magic_namepost.php


示例8: exit

<?php

/*
	[Discuz!] (C)2001-2009 Comsenz Inc.
	This is NOT a freeware, use is subject to license terms

	$Id: magic_del.inc.php 19960 2009-09-15 23:18:37Z wangjinbo $
*/
if (!defined('IN_DISCUZ')) {
    exit('Access Denied');
}
if (submitcheck('usesubmit')) {
    if (empty($pid)) {
        showmessage('magics_info_nonexistence');
    }
    $post = getpostinfo($pid, 'pid', array('t.tid', 't.fid', 't.authorid', 'first'));
    checkmagicperm($magicperm['forum'], $post['fid']);
    if ($post['authorid'] != $discuz_uid) {
        showmessage('magics_operation_nopermission');
    }
    require_once DISCUZ_ROOT . './include/post.func.php';
    if ($post['first']) {
        foreach (array('threads', 'threadsmod', 'relatedthreads', 'posts', 'polls', 'polloptions', 'trades', 'activities', 'activityapplies', 'attachments', 'favorites', 'debates', 'debateposts', 'typeoptionvars', 'forumrecommend') as $value) {
            $db->query("DELETE FROM {$tablepre}{$value} WHERE tid='{$post['tid']}'", 'UNBUFFERED');
        }
        $query = $db->query("SELECT uid, attachment, dateline, thumb, remote FROM {$tablepre}attachments WHERE tid='{$post['tid']}'");
        while ($attach = $db->fetch_array($query)) {
            dunlink($attach['attachment'], $attach['thumb'], $attach['remote']);
        }
        updateforumcount($post['fid']);
    } else {
开发者ID:lilhorse,项目名称:cocoa,代码行数:31,代码来源:magic_del.inc.php


示例9: exit

	$Id: magic_hidden.inc.php 9806 2007-08-15 06:04:37Z cnteacher $
*/
if (!defined('IN_DISCUZ')) {
    exit('Access Denied');
}
if (submitcheck('usesubmit')) {
    if (empty($pid)) {
        showmessage('magics_info_nonexistence');
    }
    $post = getpostinfo($pid, 'pid', array('p.tid', 'p.fid', 'p.author', 'p.authorid', 'first', 'p.dateline', 'anonymous'));
    checkmagicperm($magicperm['forum'], $post['fid']);
    if ($post['authorid'] != $discuz_uid) {
        showmessage('magics_operation_nopermission');
    }
    $thread = getpostinfo($post['tid'], 'tid', array('tid', 'subject', 'author', 'replies', 'lastposter'));
    if ($post['first']) {
        $author = '';
        $lastposter = $thread['replies'] > 0 ? $thread['lastposter'] : '';
        $db->query("UPDATE {$tablepre}posts SET anonymous='1' WHERE tid='{$post['tid']}' AND first='1'");
        updatemagicthreadlog($post['tid'], $magicid, $magic['identifier'], '0', '1');
    } else {
        $author = $thread['author'];
        $lastposter = '';
        $db->query("UPDATE {$tablepre}posts SET anonymous='1' WHERE pid='{$pid}'");
    }
    $query = $db->query("SELECT lastpost FROM {$tablepre}forums WHERE fid='{$post['fid']}'");
    $forum['lastpost'] = explode("\t", $db->result($query, 0));
    if ($post['dateline'] == $forum['lastpost'][2] && ($post['author'] == $forum['lastpost'][3] || $forum['lastpost'][3] == '' && $post['anonymous'])) {
        $lastpost = "{$thread['tid']}\t{$thread['subject']}\t{$timestamp}\t{$lastposter}";
        $db->query("UPDATE {$tablepre}forums SET lastpost='{$lastpost}' WHERE fid='{$post['fid']}'", 'UNBUFFERED');
开发者ID:BGCX262,项目名称:zyyhong-svn-to-git,代码行数:30,代码来源:magic_hidden.inc.php


示例10: buy

 function buy()
 {
     global $_G;
     $idtype = !empty($_GET['idtype']) ? $_GET['idtype'] : '';
     if (!empty($_GET['id'])) {
         $info = getpostinfo($_GET['id'], $idtype);
         if ($idtype == 'tid') {
             $this->_check($info['fid']);
         }
     }
 }
开发者ID:tang86,项目名称:discuz-utf8,代码行数:11,代码来源:magic_highlight.php


示例11: exit

<?php

/*
	[Discuz!] (C)2001-2009 Comsenz Inc.
	This is NOT a freeware, use is subject to license terms

	$Id: magic_top.inc.php 19412 2009-08-29 01:48:51Z monkey $
*/
if (!defined('IN_DISCUZ')) {
    exit('Access Denied');
}
if (submitcheck('usesubmit')) {
    if (empty($tid)) {
        showmessage('magics_info_nonexistence');
    }
    $post = getpostinfo($tid, 'tid', array('fid'));
    checkmagicperm($magicperm['forum'], $post['fid']);
    magicthreadmod($tid);
    $db->query("UPDATE {$tablepre}threads SET displayorder='1', moderated='1' WHERE tid='{$tid}'");
    $expiration = $timestamp + 86400;
    usemagic($magicid, $magic['num']);
    updatemagiclog($magicid, '2', '1', '0', $tid);
    updatemagicthreadlog($tid, $magicid, $magic['identifier'], $expiration);
    if ($thread['authorid'] != $discuz_uid) {
        sendnotice($thread['authorid'], 'magic_thread', 'systempm');
    }
    showmessage('magics_operation_succeed', '', 1);
}
function showmagic()
{
    global $tid, $lang;
开发者ID:lilhorse,项目名称:cocoa,代码行数:31,代码来源:magic_top.inc.php


示例12: exit

<?php

/*
	[Discuz!] (C)2001-2009 Comsenz Inc.
	This is NOT a freeware, use is subject to license terms

	$Id: magic_top.inc.php 19071 2009-08-12 03:22:17Z tiger $
*/
if (!defined('IN_DISCUZ')) {
    exit('Access Denied');
}
if (submitcheck('usesubmit')) {
    if (empty($tid)) {
        showmessage('magics_info_nonexistence');
    }
    $post = getpostinfo($tid, 'tid', array('fid', 'dateline'));
    checkmagicperm($magicperm['forum'], $post['fid']);
    $firstsofa = $db->result_first("SELECT COUNT(*) FROM {$tablepre}threadsmod WHERE magicid='{$magicid}' AND tid='{$tid}'");
    if ($firstsofa >= 1) {
        showmessage('magics_SOFA_message', '', 1);
    }
    $sofamessage = $lang['SOFA_message'];
    $dateline = $post['dateline'] + 1;
    $db->query("INSERT INTO {$tablepre}posts (fid, tid, first, author, authorid, dateline, message, useip, usesig)\r\n\t\t\tVALUES ('{$post['fid']}', '{$tid}', '0', '{$discuz_user}', '{$discuz_uid}', '{$dateline}', '{$sofamessage}', '{$onlineip}', '1')");
    $db->query("UPDATE {$tablepre}threads SET replies=replies+1, moderated='1' WHERE tid='{$tid}'", 'UNBUFFERED');
    $db->query("UPDATE {$tablepre}forums SET posts=posts+1, todayposts=todayposts+1 WHERE fid='{$post['fid']}'", 'UNBUFFERED');
    usemagic($magicid, $magic['num']);
    updatemagiclog($magicid, '2', '1', '0', $tid);
    updatemagicthreadlog($tid, $magicid, $magic['identifier'], $expiration);
    if ($thread['authorid'] != $discuz_uid) {
        sendpm($thread['authorid'], 'magics_use_subject', 'magic_thread', 0);
开发者ID:lilhorse,项目名称:cocoa,代码行数:31,代码来源:magic_sofa.inc.php


示例13: exit

<?php

/*
	[Discuz!] (C)2001-2009 Comsenz Inc.
	This is NOT a freeware, use is subject to license terms

	$Id: magic_see.inc.php 19412 2009-08-29 01:48:51Z monkey $
*/
if (!defined('IN_DISCUZ')) {
    exit('Access Denied');
}
if (submitcheck('usesubmit')) {
    if (empty($pid)) {
        showmessage('magics_info_nonexistence');
    }
    $post = getpostinfo($pid, 'pid', array('p.fid', 'useip'));
    checkmagicperm($magicperm['forum'], $post['fid']);
    usemagic($magicid, $magic['num']);
    updatemagiclog($magicid, '2', '1', '0', '0', $pid);
    if ($thread['authorid'] != $discuz_uid) {
        sendnotice($thread['authorid'], 'magic_user_anonymous', 'systempm');
    }
    showmessage('magics_SEK_message', '', 1);
}
function showmagic()
{
    global $pid, $lang;
    magicshowtype($lang['option'], 'top');
    magicshowsetting($lang['target_pid'], 'pid', $pid, 'text');
    magicshowtype('', 'bottom');
}
开发者ID:lilhorse,项目名称:cocoa,代码行数:31,代码来源:magic_see.inc.php


示例14: exit

<?php

/*
	[Discuz!] (C)2001-2009 Comsenz Inc.
	This is NOT a freeware, use is subject to license terms

	$Id: magic_color.inc.php 19908 2009-09-14 13:14:41Z liuqiang $
*/
if (!defined('IN_DISCUZ')) {
    exit('Access Denied');
}
if (submitcheck('usesubmit')) {
    if (empty($highlight_color)) {
        showmessage('magics_info_nonexistence');
    }
    $thread = getpostinfo($tid, 'tid', array('fid', 'authorid', 'subject'));
    checkmagicperm($magicperm['forum'], $thread['fid']);
    magicthreadmod($tid);
    $db->query("UPDATE {$tablepre}threads SET highlight='{$highlight_color}', moderated='1' WHERE tid='{$tid}'", 'UNBUFFERED');
    $expiration = $timestamp + 86400;
    usemagic($magicid, $magic['num']);
    updatemagiclog($magicid, '2', '1', '0', $tid);
    updatemagicthreadlog($tid, $magicid, $magic['identifier'], $expiration);
    if ($thread['authorid'] != $discuz_uid) {
        sendnotice($thread['authorid'], 'magic_thread', 'systempm');
    }
    showmessage('magics_operation_succeed', '', 1);
}
function showmagic()
{
    global $tid, $lang;
开发者ID:lilhorse,项目名称:cocoa,代码行数:31,代码来源:magic_color.inc.php



注:本文中的getpostinfo函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP getposttable函数代码示例发布时间:2022-05-15
下一篇:
PHP getpost_variable函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap