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

PHP memory函数代码示例

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

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



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

示例1: main

 function main()
 {
     global $_G;
     $id = intval($_GET['id']);
     if (!$id) {
         msg('抱歉,ID不存在');
         return false;
     }
     $cache_name = 'img_' . $id;
     $cache = memory('get', $cache_name);
     if (is_array($cache)) {
         $img = $cache;
     } else {
         $img = D(array('and' => ' AND id = ' . $id, 'table' => __CLASS__));
         if (!$img[id]) {
             msg('抱歉,当前信息不存在');
             return false;
         }
         DB::update('img', array('like' => $img[like] + 1), 'id=' . $id);
         $up = D(array('and' => ' AND id <' . $id, 'table' => __CLASS__, 'order' => 'id DESC'));
         $down = D(array('and' => ' AND id >' . $id, 'table' => __CLASS__, 'order' => 'id ASC'));
         $img[up] = $up[id] ? '<a href="' . $up[url] . '">' . $up[title] . '</a>' : '没有了';
         $img[down] = $down[id] ? '<a href="' . $down[url] . '">' . $down[title] . '</a>' : '没有了';
         //	$img[message] = preg_replace("/###\{(.*?)\}###/ies","parse_img_goods('\\1')",$img[message]);
         //$img[message] = preg_replace("/###\{(.*?)\}###/ies","parse('img_goods','\\1')",$img[message]);
         memory('set', $cache_name, $img);
     }
     $this->add(array('img' => $img));
     seo($img['title'], $img['keywords'], $img['description']);
     $this->show();
 }
开发者ID:lqlstudio,项目名称:ttae_open,代码行数:31,代码来源:img.action.php


示例2: global_header_mobile

 function global_header_mobile()
 {
     global $_G, $show_message;
     function dsu_signtz()
     {
         dheader('Location: plugin.php?id=dsu_paulsign:sign&mobile=yes');
     }
     $var = $_G['cache']['plugin']['dsu_paulsign'];
     if (defined('IN_dsu_paulsign') || $show_message || defined('IN_dsu_paulsc') || !$_G['uid'] || !$var['ifopen'] || !$var['wap_sign']) {
         return '';
     }
     $tdtime = gmmktime(0, 0, 0, dgmdate($_G['timestamp'], 'n', $var['tos']), dgmdate($_G['timestamp'], 'j', $var['tos']), dgmdate($_G['timestamp'], 'Y', $var['tos'])) - $var['tos'] * 3600;
     $allowmem = memory('check');
     if ($var['ftopen'] && in_array($_G['groupid'], unserialize($var['tzgroupid'])) && !in_array($_G['uid'], explode(",", $var['ban'])) && in_array($_G['groupid'], unserialize($var['groups']))) {
         if ($allowmem && $var['mcacheopen']) {
             $signtime = memory('get', 'dsu_pualsign_' . $_G['uid']);
         }
         if (!$signtime) {
             $qiandaodb = DB::fetch_first("SELECT time FROM " . DB::table('dsu_paulsign') . " WHERE uid='{$_G['uid']}'");
             $signtime = $qiandaodb['time'];
             $htime = dgmdate($_G['timestamp'], 'H', $var['tos']);
             if ($qiandaodb) {
                 if ($allowmem && $var['mcacheopen']) {
                     memory('set', 'dsu_pualsign_' . $_G['uid'], $qiandaodb['time'], 86400);
                 }
                 if ($qiandaodb['time'] < $tdtime) {
                     if ($var['timeopen']) {
                         if (!($htime < $var['stime']) && !($htime > $var['ftime'])) {
                             return dsu_signtz();
                         }
                     } else {
                         return dsu_signtz();
                     }
                 }
             } else {
                 $ttps = DB::fetch_first("SELECT posts FROM " . DB::table('common_member_count') . " WHERE uid='{$_G['uid']}'");
                 if ($var['mintdpost'] <= $ttps['posts']) {
                     if ($var['timeopen']) {
                         if (!($htime < $var['stime']) && !($htime > $var['ftime'])) {
                             return dsu_signtz();
                         }
                     } else {
                         return dsu_signtz();
                     }
                 }
             }
         } else {
             if ($signtime < $tdtime) {
                 if ($var['timeopen']) {
                     if (!($htime < $var['stime']) && !($htime > $var['ftime'])) {
                         return dsu_signtz();
                     }
                 } else {
                     return dsu_signtz();
                 }
             }
         }
     }
     return '<a href="plugin.php?id=dsu_paulsign:sign">' . lang('plugin/dsu_paulsign', 'name') . '</a>';
 }
开发者ID:sayhanabi,项目名称:sayhanabi_forum,代码行数:60,代码来源:sign_mobile.class.php


示例3: __construct

 public function __construct()
 {
     $this->_table = 'pre_common_basedata';
     $this->_allowmem = memory('check');
     $this->_cache_ttl = 86400;
     parent::__construct();
 }
开发者ID:vanloswang,项目名称:discuzx-1,代码行数:7,代码来源:table_common_basedata.php


示例4: main

 function main()
 {
     global $_G;
     $id = intval($_GET['id']);
     if ($id < 1) {
         msg('ID不存在');
         return false;
     }
     $cache_name = 'article_' . $id;
     $cache = memory('get', $cache_name);
     if (is_array($cache)) {
         $article = $cache;
     } else {
         $article = D(array('table' => 'article', 'and' => ' id = ' . $id . '  AND `hide`=0 '));
         if (!$article[id]) {
             msg('抱歉,当前文章不存在或未审核');
         }
         $up = D(array('and' => ' AND id <' . $id, 'table' => __CLASS__, 'order' => 'id DESC'));
         $down = D(array('and' => ' AND id >' . $id, 'table' => __CLASS__, 'order' => 'id ASC'));
         $article[up] = $up[id] ? '<a href="' . $up[id_url] . '">' . $up[title] . '</a>' : '没有了';
         $article[down] = $down[id] ? '<a href="' . $down[id_url] . '">' . $down[title] . '</a>' : '没有了';
         save_history(__CLASS__, $article[id]);
         DB::update('article', array('views' => $article[views] + 1), 'id=' . $article[id]);
         memory('set', $cache_name, $article);
     }
     $this->add(array('article' => $article));
     seo($article['title'], $article['keywords'], $article['description']);
     $this->show($article['tpl']);
 }
开发者ID:lqlstudio,项目名称:ttae_open,代码行数:29,代码来源:article.action.php


示例5: _getBaseInfo

 protected function _getBaseInfo()
 {
     global $_G;
     $info = array();
     loadcache(array('userstats', 'historyposts'));
     $indexData = memory('get', 'forum_index_page_1');
     if (is_array($indexData) && $indexData) {
         $indexData = array();
         $info['threads'] = $indexData['threads'] ? $indexData['threads'] : 0;
         $info['todayPosts'] = $indexData['todayposts'] ? $indexData['todayposts'] : 0;
         $info['allPosts'] = $indexData['posts'] ? $indexData['posts'] : 0;
     } else {
         $threads = $posts = $todayposts = 0;
         $query = C::t('forum_forum')->fetch_all_by_status(1, 0);
         foreach ($query as $forum) {
             if ($forum['type'] != 'group') {
                 $threads += $forum['threads'];
                 $posts += $forum['posts'];
                 $todayposts += $forum['todayposts'];
             }
         }
         $info['threads'] = $threads ? $threads : 0;
         $info['allPosts'] = $posts ? $posts : 0;
         $info['todayPosts'] = $todayposts ? $todayposts : 0;
     }
     $info['members'] = $_G['cache']['userstats']['totalmembers'] ? intval($_G['cache']['userstats']['totalmembers']) : 0;
     $postdata = $_G['cache']['historyposts'] ? explode("\t", $_G['cache']['historyposts']) : array(0, 0);
     $info['yesterdayPosts'] = intval($postdata[0]);
     return $info;
 }
开发者ID:MCHacker,项目名称:discuz-docker,代码行数:30,代码来源:Cloud.php


示例6: __construct

 public function __construct()
 {
     $this->_table = 'common_member_forum_buylog';
     $this->_pk = 'uid';
     $this->_pre_cache_key = 'common_member';
     $this->_allowmem = memory('check');
     $this->_cache_ttl = 86400;
     parent::__construct();
 }
开发者ID:tang86,项目名称:discuz-utf8,代码行数:9,代码来源:table_common_member_forum_buylog.php


示例7: __construct

 public function __construct()
 {
     $this->_table = 'common_session';
     $this->_pk = 'sid';
     $this->_pre_cache_key = 'common_session_';
     $this->_allowmem = memory('check');
     $this->_cache_ttl = 120;
     parent::__construct();
 }
开发者ID:vanloswang,项目名称:discuzx-1,代码行数:9,代码来源:table_common_session.php


示例8: fetch_all_by_g_id

 public static function fetch_all_by_g_id()
 {
     $data = memory('get', 'plugin_dsuamupperc_fetch_all_by_g_id');
     if ($data) {
         return $data;
     }
     $result = DB::fetch_all("SELECT * FROM %t WHERE id>%d LIMIT %d", array('plugin_dsuamupperc', '-1', '100'), 'id');
     memory('set', 'plugin_dsuamupperc_fetch_all_by_g_id', $result, 60);
     return $result;
 }
开发者ID:vanloswang,项目名称:discuzx-1,代码行数:10,代码来源:table_plugin_dsuamupperc.php


示例9: delete

 public function delete($val, $unbuffered = false)
 {
     if ($val = dintval($val, true)) {
         $this->_pre_cache_key = 'blockstylecache_';
         $this->_cache_ttl = getglobal('setting/memory/diyblock/ttl');
         $this->_allowmem = getglobal('setting/memory/diyblock/enable') && memory('check');
         return parent::delete($val, $unbuffered);
     }
     return false;
 }
开发者ID:softhui,项目名称:discuz,代码行数:10,代码来源:table_common_block_style.php


示例10: member

	private function member($groups = array()){
		$cachekey = 'reply_robots_members';	
		$members = unserialize(memory('get',$cachekey));	
		if(is_array($members)){
			return $members[array_rand($members)];
		}else{	
			$members = DB::fetch_all("SELECT uid,username FROM ".DB::table('common_member')." WHERE `groupid` IN ({$groups}) LIMIT 100");		
			memory('set',$cachekey,serialize($members),86400);			
			return $members[array_rand($members)];
		}
		
	}
开发者ID:xiao2ww,项目名称:Bjwlkjc,代码行数:12,代码来源:pao_reply_robot.class.php


示例11: cache

 function cache()
 {
     global $_G;
     if ($_GET['onsubmit'] && check()) {
         if ($_GET[postdb][system_cache] == 1) {
             memory('clear');
             loadcache($_G[_config][cache_list], 'update');
         }
         api_post(array('m' => 'cache', 'a' => 'update', 'cache_list' => implode(',', $_G[_config][cache_list])));
         remove_dir('web/templates_c/');
         cpmsg('更新成功', 'success', 'm=tools&a=cache');
         return false;
     }
     $this->show('tools/cache');
 }
开发者ID:lqlstudio,项目名称:ttae_open,代码行数:15,代码来源:tools.action.php


示例12: _process_cmd_memory

 private static function _process_cmd_memory($cmd, $name, $ttl = 0)
 {
     $ret = '';
     switch ($cmd) {
         case 'set':
             $ret = memory('set', 'process_lock_' . $name, time(), $ttl);
             break;
         case 'get':
             $ret = memory('get', 'process_lock_' . $name);
             break;
         case 'rm':
             $ret = memory('rm', 'process_lock_' . $name);
     }
     return $ret;
 }
开发者ID:vanloswang,项目名称:discuzx-1,代码行数:15,代码来源:discuz_process.php


示例13: count_by_lasttime

 public function count_by_lasttime($lasttime, $glu = '>=')
 {
     $lasttime = intval($lasttime);
     if (empty($lasttime) || !in_array('>=', '>', '<', '<=')) {
         return 0;
     }
     $mem_key = 'plugin_dsuamupper::count_by_lasttime' . $lasttime . $glu;
     $data = memory('get', $mem_key);
     if ($data) {
         return $data;
     }
     $result = DB::result_first("SELECT COUNT(*) FROM " . $this->_table . " WHERE lasttime {$glu} {$lasttime}");
     memory('set', $mem_key, $result);
     return $result;
 }
开发者ID:vanloswang,项目名称:discuzx-1,代码行数:15,代码来源:table_plugin_dsuamupper.php


示例14: block_getstyle

function block_getstyle($styleids = array())
{
    global $_G;
    static $allowmem = null, $cachettl = null;
    if ($allowmem === null) {
        $allowmem = ($cachettl = getglobal('setting/memory/diyblock')) !== null && memory('check');
    }
    $pre = 'blockstyle_';
    if ($ret = $styleids && !is_array($styleids) ? $styleids : false) {
        if ($_G[$pre . $ret]) {
            return $_G[$pre . $ret];
        } else {
            $styleids = (array) $styleids;
        }
    }
    $cacheprekey = 'blockstylecache_';
    $styleids = array_map('intval', $styleids);
    $styleids = array_unique($styleids);
    if ($styleids) {
        if ($allowmem) {
            if (($cachedata = memory('get', $styleids, $cacheprekey)) !== false) {
                foreach ($cachedata as $styleid => $style) {
                    $_G[$pre . $styleid] = $style;
                }
                if (!($styleids = array_diff($styleids, array_keys($cachedata)))) {
                    return $ret ? $_G[$pre . $ret] : true;
                }
            }
        }
        if ($styleids) {
            foreach (C::t('common_block_style')->fetch_all($styleids) as $styleid => $value) {
                $value['template'] = !empty($value['template']) ? (array) dunserialize($value['template']) : array();
                $value['fields'] = !empty($value['fields']) ? (array) dunserialize($value['fields']) : array();
                $_G[$pre . $styleid] = $value;
                if ($allowmem) {
                    memory('set', $cacheprekey . $styleid, $_G[$pre . $styleid], $cachettl);
                }
            }
        }
        return $ret ? $_G[$pre . $ret] : true;
    }
    return array();
}
开发者ID:vanloswang,项目名称:discuzx-1,代码行数:43,代码来源:function_block.php


示例15: _process_cmd_memory

 function _process_cmd_memory($cmd, $name, $ttl = 0)
 {
     return memory($cmd, 'process_lock_' . $name, time(), $ttl);
 }
开发者ID:dalinhuang,项目名称:hlwbbsvincent,代码行数:4,代码来源:class_core.php


示例16: block_get

function block_get($parameter)
{
    global $_G;
    static $allowmem;
    if ($allowmem === null) {
        include_once libfile('function/block');
        $allowmem = getglobal('setting/memory/diyblock/enable') && memory('check');
    }
    if (!$allowmem) {
        block_get_batch($parameter);
        return true;
    }
    $blockids = explode(',', $parameter);
    $lostbids = array();
    foreach ($blockids as $bid) {
        $bid = intval($bid);
        if ($bid) {
            $_G['block'][$bid] = memory('get', 'blockcache_' . $bid);
            if ($_G['block'][$bid] === null) {
                $lostbids[] = $bid;
            }
        }
    }
    if ($lostbids) {
        block_get_batch(implode(',', $lostbids));
        foreach ($lostbids as $bid) {
            if (isset($_G['block'][$bid])) {
                memory('set', 'blockcache_' . $bid, $_G['block'][$bid], getglobal('setting/memory/diyblock/ttl'));
            }
        }
    }
}
开发者ID:Kingson4Wu,项目名称:php_demo,代码行数:32,代码来源:function_core.php


示例17: search_shop

 function search_shop()
 {
     global $_G, $assign;
     $sid = $_GET['sid'] ? $_GET['sid'] : $_GET['shop'];
     $index = array();
     //获取相关的
     $rs = memory('get', $sid);
     if ($rs) {
         $index['xiangguan'] = $rs;
     } else {
         $index['xiangguan'] = top('taobaoke', 'get_recommend', 4, $sid, 20);
         if ($index['xiangguan']) {
             memory('set', $sid, $index['xiangguan'], 86400);
         }
     }
     $title = $assign['shop']['shop_title'];
     $shop1 = "专营";
     $shop2 = "旗舰";
     $shop3 = "专卖";
     $and = "";
     if (strpos($title, $shop1) !== false) {
         $and = " AND shop_title like '%{$shop1}%'";
     } else {
         if (strpos($title, $shop2) !== false) {
             $and = " AND shop_title like '%{$shop2}%'";
         } else {
             if (strpos($title, $shop3) !== false) {
                 $and = " AND shop_title like '%{$shop3}%'";
             }
         }
     }
     //	$index['tag_shop'] = $this->get_shop($and);
     $tehui = D(array('and' => '', 'limit' => 20));
     $index['tehui'] = $tehui;
     return $index;
 }
开发者ID:lqlstudio,项目名称:ttae_open,代码行数:36,代码来源:data_api.php


示例18: array

 // }
 if (!empty($thisvars['uid'])) {
     $update_data = array('addup' => intval($addup), 'cons' => intval($cons), 'lasttime' => intval($_G['timestamp']), 'time' => intval($today), 'allow' => intval($arr['allow']));
     C::t('#dsu_amupper#plugin_dsuamupper')->update($_G['uid'], $update_data);
 } else {
     $insert_data = array('uid' => intval($_G['uid']), 'uname' => dhtmlspecialchars("'" . addslashes($_G['username']) . "'"), 'addup' => intval($addup), 'cons' => intval($cons), 'lasttime' => intval($_G['timestamp']), 'time' => intval($today), 'allow' => intval($arr['allow']));
     C::t('#dsu_amupper#plugin_dsuamupper')->insert($insert_data);
 }
 $jiangliba = 1;
 // 删除统计缓存
 $nt1 = dgmdate($_G['timestamp'], 'i', $_G['setting']['timeoffset']);
 $nt2 = dgmdate($_G['timestamp'], 's', $_G['setting']['timeoffset']);
 $nt = $nt1 * 60 + $nt2;
 $Htime = $_G['timestamp'] - $nt;
 $mem_key = 'plugin_dsuamupper::count_by_lasttime' . $Htime . '>=';
 memory('rm', $mem_key);
 if ($jiangliba == 1) {
     switch ($thisvars['ms']) {
         case 1:
             // 关闭插件
             break;
         case 2:
             // 无特殊奖励
             updatemembercount($_G['uid'], array("extcredits{$thisvars['ptjf']}" => $pt), true, '', 0);
             break;
         case 3:
             // 特殊奖励(N)非循环
             if (is_array($teshu)) {
                 foreach ($teshu as $id => $result) {
                     updatemembercount($_G['uid'], array("extcredits{$result['extcredits']}" => $result['reward']), true, '', 0);
                 }
开发者ID:vanloswang,项目名称:discuzx-1,代码行数:31,代码来源:dsu_amupper.inc.php


示例19: libfile

         if ($num >= 1 && $num <= 9 && $exacr && $exacz) {
             $message = "[quote][size=2][color=gray][color=teal] [/color][color=gray]{$lang[tsn_01]}[/color] [color=darkorange]{$hft}[/color] {$lang[tsn_02]}[color=red]{$lang[tsn_03]}[/color][color=darkorange]{$lang[tsn_04]}{$psc}{$lang[tsn_05]}[/color]{$lang[tsn_06]} [/color][color=gray]{$_G[setting][extcredits][$var[nrcredit]][title]} [/color][color=darkorange]{$credit}[/color][color=gray]{$_G[setting][extcredits][$var[nrcredit]][unit]}[/color][color=gray]{$lang[tsn_17]}[/color] [color=gray]{$_G[setting][extcredits][$exacr][title]} [/color][color=darkorange]{$exacz}[/color][color=gray]{$_G[setting][extcredits][$exacr][unit]}[/color][/color][/size][/quote][size=3][color=dimgray]{$lang[tsn_07]}[color=red]{$todaysay}[/color]{$lang[tsn_08]}[/color][/size]";
         } else {
             $message = "[quote][size=2][color=gray][color=teal] [/color][color=gray]{$lang[tsn_01]}[/color] [color=darkorange]{$hft}[/color] {$lang[tsn_09]}{$lang[tsn_06]} [/color][color=gray]{$_G[setting][extcredits][$var[nrcredit]][title]} [/color][color=darkorange]{$credit} [/color][color=gray]{$_G[setting][extcredits][$var[nrcredit]][unit]}[/color][/size][/quote][size=3][color=dimgray]{$lang[tsn_07]}[color=red]{$todaysay}[/color]{$lang[tsn_08]}[/color][/size]";
         }
         require_once libfile('function/post');
         require_once libfile('function/forum');
         $pid = insertpost(array('fid' => $var['fidnumber'], 'tid' => $tidnumber, 'first' => '0', 'author' => $_G['username'], 'authorid' => $_G['uid'], 'subject' => '', 'dateline' => $_G['timestamp'], 'message' => $message, 'useip' => $_G['clientip'], 'invisible' => '0', 'anonymous' => '0', 'usesig' => '0', 'htmlon' => '0', 'bbcodeoff' => '0', 'smileyoff' => '0', 'parseurloff' => '0', 'attachment' => '0'));
         DB::query("UPDATE " . DB::table('forum_thread') . " SET lastposter='{$_G['username']}', lastpost='{$_G['timestamp']}', replies=replies+1 WHERE tid='{$tidnumber}' AND fid='{$var['fidnumber']}'", 'UNBUFFERED');
         updatepostcredits('+', $_G['uid'], 'reply', $var['fidnumber']);
         $lastpost = "{$tidnumber}\t" . addslashes($thread['subject']) . "\t{$_G['timestamp']}\t{$_G['username']}";
         DB::query("UPDATE " . DB::table('forum_forum') . " SET lastpost='{$lastpost}', posts=posts+1, todayposts=todayposts+1 WHERE fid='{$var['fidnumber']}'", 'UNBUFFERED');
     }
 }
 if (memory('check')) {
     memory('set', 'dsu_pualsign_' . $_G['uid'], $_G['timestamp'], 86400);
 }
 if ($num == 0) {
     if ($stats['todayq'] > $stats['highestq']) {
         DB::query("UPDATE " . DB::table('dsu_paulsignset') . " SET highestq='{$stats['todayq']}' WHERE id='1'");
     }
     DB::query("UPDATE " . DB::table('dsu_paulsignset') . " SET yesterdayq='{$stats['todayq']}',todayq=1 WHERE id='1'");
 } else {
     DB::query("UPDATE " . DB::table('dsu_paulsignset') . " SET todayq=todayq+1 WHERE id='1'");
 }
 if ($var['lockopen']) {
     discuz_process::unlock('dsu_paulsign');
 }
 if ($var['tzopen']) {
     if ($exacr && $exacz) {
         sign_msg("{$lang[tsn_14]}{$lang[tsn_03]}{$lang[tsn_04]}{$psc}{$lang[tsn_15]}{$lang[tsn_06]} {$_G[setting][extcredits][$var[nrcredit]][title]} {$credit} {$_G[setting][extcredits][$var[nrcredit]][unit]} {$lang[tsn_16]} {$_G[setting][extcredits][$exacr][title]} {$exacz} {$_G[setting][extcredits][$exacr][unit]}." . $another_vip, "forum.php?mod=redirect&tid={$tidnumber}&goto=lastpost#lastpost");
开发者ID:v998,项目名称:dsu,代码行数:31,代码来源:sign.inc.php


示例20: get_index_memory_by_groupid

function get_index_memory_by_groupid($key)
{
    $enable = getglobal('setting/memory/forumindex');
    if ($enable !== null && memory('check')) {
        if (IS_ROBOT) {
            $key = 'for_robot';
        }
        $ret = memory('get', 'forum_index_page_' . $key);
        define('FORUM_INDEX_PAGE_MEMORY', $ret ? 1 : 0);
        if ($ret) {
            return $ret;
        }
    }
    return array('none' => null);
}
开发者ID:MCHacker,项目名称:discuz-docker,代码行数:15,代码来源:forum_index.php



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
PHP memory_get_peak_usage函数代码示例发布时间:2022-05-15
下一篇:
PHP memorize_param函数代码示例发布时间: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