Page Time: 0.2152s

Memory: 10.5948 MB (Peak: 11.7215 MB)

Queries (13, time: 0.0242s, 11.2%)

  1. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('options', 'languages', 'contentTypes', 'codeEventListeners', 'deferredRun', 'simpleCache', 'addOns', 'defaultStyleProperties', 'routeFiltersIn', 'routeFiltersOut', 'routesPublic', 'nodeTypes', 'bannedIps', 'discouragedIps', 'styles', 'displayStyles', 'userBanners', 'smilies', 'bbCode', 'threadPrefixes', 'userTitleLadder', 'reportCounts', 'moderationCounts', 'userModerationCounts', 'notices', 'userFieldsInfo')
    Run Time: 0.000472
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 26Using where
  2. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('brListenerClasses', 'brBriviumAddOns')
    Run Time: 0.000164
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using where
  3. SELECT *
    FROM xf_brivium_addon
    ORDER BY addon_id
    Run Time: 0.000142
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_brivium_addonindex PRIMARY77 1 
  4. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: brBriviumAddOns, a:0:{}
    Run Time: 0.000125
  5. SELECT session_data
    FROM xf_session
    WHERE session_id = ?
    	AND expiry_date >= ?
    Params: 47f0a73aa19297cec2af9da7bfe559d9, 1716420908
    Run Time: 0.000147
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_sessionconstPRIMARY,expiry_datePRIMARY34const1 
  6. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000138
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  7. SELECT thread.*
    	,
    		user.gender, user.avatar_date, user.gravatar,
    		NULL AS thread_read_date,
    		0 AS thread_reply_banned,
    		0 AS thread_is_watched,
    		'' AS draft_message, NULL AS draft_extra
    FROM xf_thread AS thread
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    WHERE thread.thread_id = ?
    Params: 391182
    Run Time: 0.000663
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  8. SELECT node.*, forum.*
    	,
    	permission.cache_value AS node_permission_cache,
    		NULL AS forum_read_date
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    	LEFT JOIN xf_permission_cache_content AS permission
    		ON (permission.permission_combination_id = 1
    			AND permission.content_type = 'node'
    			AND permission.content_id = forum.node_id)
    WHERE node.node_id = ?
    Params: 25
    Run Time: 0.000368
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  9. SELECT post.*
    	,
    		thread.*, thread.user_id AS thread_user_id, thread.username AS thread_username,
    		thread.post_date AS thread_post_date,
    		post.user_id, post.username, post.post_date,
    		bb_code_parse_cache.parse_tree AS message_parsed, bb_code_parse_cache.cache_version AS message_cache_version,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    		user_profile.*,
    		user_privacy.*,
    		signature_parse_cache.parse_tree AS signature_parsed, bb_code_parse_cache.cache_version AS signature_cache_version,
    		session_activity.view_date AS last_view_date,
    		0 AS like_date
    FROM xf_post AS post
    
    		INNER JOIN xf_thread AS thread ON
    			(thread.thread_id = post.thread_id)
    		LEFT JOIN xf_bb_code_parse_cache AS bb_code_parse_cache ON
    			(bb_code_parse_cache.content_type = 'post' AND bb_code_parse_cache.content_id = post.post_id)
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = post.user_id)
    		LEFT JOIN xf_user_profile AS user_profile ON
    			(user_profile.user_id = post.user_id)
    		LEFT JOIN xf_user_privacy AS user_privacy ON
    			(user_privacy.user_id = post.user_id)
    		LEFT JOIN xf_bb_code_parse_cache AS signature_parse_cache ON
    			(signature_parse_cache.content_type = 'signature' AND signature_parse_cache.content_id = post.user_id)
    		LEFT JOIN xf_session_activity AS session_activity ON
    			(post.user_id > 0 AND session_activity.user_id = post.user_id AND session_activity.unique_key = CAST(post.user_id AS BINARY))
    WHERE (
    		(post.thread_id = ?  AND (post.position >= 0 AND post.position < 10) )
    		
    		
    	)
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 391182
    Run Time: 0.009400
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1Using filesort
    SIMPLEpostrefthread_id_post_date,thread_id_positionthread_id_post_date4const1Using index condition; Using where
    SIMPLEbb_code_parse_cacheeq_refcontent_type_idcontent_type_id31const,xenforo.cc.post.post_id1Using where
    SIMPLEusereq_refPRIMARYPRIMARY4xenforo.cc.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4xenforo.cc.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4xenforo.cc.post.user_id1 
    SIMPLEsignature_parse_cacheeq_refcontent_type_idcontent_type_id31const,xenforo.cc.post.user_id1Using where
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22xenforo.cc.post.user_id,func1Using where
  10. INSERT  INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 391182
    Run Time: 0.000088
  11. UPDATE `xf_session` SET `expiry_date` = ? WHERE (session_id = '47f0a73aa19297cec2af9da7bfe559d9')
    Params: 1716424508
    Run Time: 0.008583
  12. INSERT INTO xf_session_activity
    	(user_id, unique_key, ip, controller_name, controller_action, view_state, params, view_date, robot_key)
    VALUES
    	(?, ?, ?, ?, ?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE
    	ip = VALUES(ip),
    	controller_name = VALUES(controller_name),
    	controller_action = VALUES(controller_action),
    	view_state = VALUES(view_state),
    	params = VALUES(params),
    	view_date = VALUES(view_date),
    	robot_key = VALUES(robot_key)
    Params: 0, , , XenForo_ControllerPublic_Thread, Index, valid, thread_id=391182, 1716420908,
    Run Time: 0.000110
  13. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 397991, a:48:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:251:"智能手机品牌realme真我召开“萤火青年 当潮不让”真我Q3系列新品发布会。真我Q3系列立足于年轻人市场,以挑战同级最潮设计、最强性能和最强体验作为升级重点,打造全新一代潮玩爆款。";}}i:1;s:153:"realme副总裁、中国区总裁徐起表示:作为全球成长最快的智能手机品牌,realme 的增长势头不减,依旧在续写奇迹。 ";i:2;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2021/0422/5035d1957584868.jpg";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2021/0422/5035d1957584868.jpg']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:96:"https://rdimg.com/proxy/https://static.cnbetacdn.com/thumb/article/2021/0422/5035d1957584868.jpg";}}}}i:3;s:215:" 真我Q3系列发布会 徐起 全方面的人气和口碑,让真我Q2系列在全渠道好评率高达98%,成为relame在中国市场首个销量破百万的爆款。而真我Q3系列产品作为继任者,";i:4;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:76:"https://c.duomai.com/track.php?site_id=242986&euid=&t=https://realme.jd.com/";s:8:"original";a:2:{i:0;s:84:"[URL='https://c.duomai.com/track.php?site_id=242986&euid=&t=https://realme.jd.com/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:6:"Realme";}}i:5;s:157:"和“真粉”一样抱有高期待值,此次真我Q3系列将“同价位最强性能”作为核心目标,将打造全新一代“千元机皇”。 ";i:6;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:67:"旗舰芯+电竞VC液冷+电竞高刷屏,性能迎来大幅升级";}}i:7;s:292:" 真我Q3 Pro搭载天玑1100 5G芯片,采用6nm制程工艺,使用天玑1200同款A78大核心,核心规格全面看齐旗舰芯片——搭配双通道UFS 3.1高性能闪存、真我GT系列同款3D钢化VC液冷散热,相比上代产品实现了高达80%的跨代性能提升。 ";i:8;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2021/0422/cc2bd6c329cc9f3.jpg";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2021/0422/cc2bd6c329cc9f3.jpg']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:96:"https://rdimg.com/proxy/https://static.cnbetacdn.com/thumb/article/2021/0422/cc2bd6c329cc9f3.jpg";}}}}i:9;s:57:" 真我Q3 Pro性能配置 全新升级的6.4英寸120Hz";i:10;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:77:"https://c.duomai.com/track.php?site_id=242986&euid=&t=https://samsung.jd.com/";s:8:"original";a:2:{i:0;s:85:"[URL='https://c.duomai.com/track.php?site_id=242986&euid=&t=https://samsung.jd.com/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:6:"三星";}}i:11;s:2:"AM";i:12;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:195:"https://c.duomai.com/track.php?site_id=242986&euid=&t=https%3A%2F%2Flist.jd.com%2Flist.html%3Fcat%3D737%2C794%2C798%26ev%3D4155_88234%26sort%3Dsort_rank_asc%26trans%3D1%26JL%3D2_1_0%23J_crumbsBar";s:8:"original";a:2:{i:0;s:203:"[URL='https://c.duomai.com/track.php?site_id=242986&euid=&t=https%3A%2F%2Flist.jd.com%2Flist.html%3Fcat%3D737%2C794%2C798%26ev%3D4155_88234%26sort%3Dsort_rank_asc%26trans%3D1%26JL%3D2_1_0%23J_crumbsBar']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:4:"OLED";}}i:13;s:135:"电竞屏,相比上代刷新率和触控采样率双双翻倍,向2021年高端旗舰看齐,360Hz超高触控采样率比肩电竞";i:14;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:76:"https://c.duomai.com/track.php?site_id=242986&euid=&t=https://shouji.jd.com/";s:8:"original";a:2:{i:0;s:84:"[URL='https://c.duomai.com/track.php?site_id=242986&euid=&t=https://shouji.jd.com/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:6:"手机";}}i:15;s:166:",为消费者提供了以往千元机没有的显示体验。配合Tactile Engine线性马达、立体双扬声器,打造感官越级的沉浸式游戏体验。 ";i:16;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2021/0422/4b15bf2554ba487.jpg";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2021/0422/4b15bf2554ba487.jpg']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:96:"https://rdimg.com/proxy/https://static.cnbetacdn.com/thumb/article/2021/0422/4b15bf2554ba487.jpg";}}}}i:17;s:773:" 真我Q3 Pro卖点信息汇总 真我Q3搭载新一代高通5G芯片骁龙750G,其采用8nm制程工艺,两颗主频2.2GHz的Cortex-A77大核与骁龙865规格一致,Adreno 619 和第五代AIE构架NPU同样采用骁龙865同代技术——核心规格全面看齐旗舰芯片,搭配同级首个电竞级VC液冷散热系统,性能表现全面升级。 真我Q3搭载同价位首款6.5英寸120Hz变速电竞屏,支持4档可变帧率,在游戏,视频,信息流等不同场景下可以根据需求智能切换显示帧率,提供流畅且节能的显示体验。 续航方面,在保持轻薄设计的同时,真我Q3搭载5000mAh超大电池和30W 智慧闪充技术,配合系统级全场景智能省电优化,让出色性能大胆释放。 ";i:18;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2021/0422/716c92695e28033.jpg";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2021/0422/716c92695e28033.jpg']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:96:"https://rdimg.com/proxy/https://static.cnbetacdn.com/thumb/article/2021/0422/716c92695e28033.jpg";}}}}i:19;s:216:" 真我Q3卖点信息汇总 真我Q3系列以全面看齐旗舰的芯片挑战最强性能,以超越价位的高刷屏幕以及VC液冷技术加持让整机表现更流畅,打造新一代“千元机皇”! ";i:20;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:65:"全新未来主义潮玩设计 与Z世代共做“萤火青年”";}}i:21;s:357:" 真我Q3系列产品的“未来主义风潮”设计理念,灵感来源于科技未来感的Y2K文化。千禧年人们对高科技的想象以及刻画,引发了Y2K美学的诞生。在视觉表达中,Y2K带着对未来的美好幻想,多色相、高度饱和的色彩成为了特有标志,而金属感则是科技感的主要表达形式。 ";i:22;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2021/0422/6478eb604ac2a94.jpg";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2021/0422/6478eb604ac2a94.jpg']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:96:"https://rdimg.com/proxy/https://static.cnbetacdn.com/thumb/article/2021/0422/6478eb604ac2a94.jpg";}}}}i:23;s:559:" 真我Q3 Pro萤火虫配色产品图 真我Q3 Pro“萤火虫”就是这样一款受Y2K文化启发,视觉表现极具神秘未来感的潮酷单品。通过应用精密3D激光雕刻工艺,“萤火虫”配色后盖给人以颗粒分明的高亮雾面视觉观感,其不仅提升了手机的抗指纹能力,也让高饱和度的荧光色实现了更出色的折射效果;其次,全新的高效蓄光型夜光材料,与realme 标志性的“DARE TO LEAP"品牌Slogan相结合,创造出白天吸光、夜晚荧光的独特视觉效果。 ";i:24;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2021/0422/94b663c9f1cf1c1.jpg";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2021/0422/94b663c9f1cf1c1.jpg']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:96:"https://rdimg.com/proxy/https://static.cnbetacdn.com/thumb/article/2021/0422/94b663c9f1cf1c1.jpg";}}}}i:25;s:374:" 真我Q3系列“萤火青年”概念图 萤火虫的潮玩设计,向年轻人传递了realme积极向上,敢于引领的潮流态度:萤火青年,当潮不让。realme愿意和所有年轻人一起,敢创新,敢不同,敢引领潮流,敢越级。像萤火一般,即便在黑暗中,也可以发一点光。微光吸引微光,微光照亮微光。 ";i:26;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2021/0422/bd1fe5f48f2e54f.jpg";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2021/0422/bd1fe5f48f2e54f.jpg']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:96:"https://rdimg.com/proxy/https://static.cnbetacdn.com/thumb/article/2021/0422/bd1fe5f48f2e54f.jpg";}}}}i:27;s:580:" 真我Q3迷幻银配色产品图 真我Q3“迷幻银”则汲取Y2K文化中的“金属感”和“迷幻色彩”作为视觉设计核心,大胆使用了纹理解构拼接工艺,将高亮金属质感超强的格点状纹理与全息幻彩纹理组合拼接,打造出独一无二的潮流后盖。同时,迷幻银将“DARE TO LEAP”作为时尚元素融入到产品背面的设计,结合纳米级全息幻彩纹理工艺,使手机后壳的光条在任何一个角度下都能够散发出镭射一样多变的光芒,极具动态美感及未来的科幻感。 ";i:28;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2021/0422/60335059bbe2b58.jpg";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2021/0422/60335059bbe2b58.jpg']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:96:"https://rdimg.com/proxy/https://static.cnbetacdn.com/thumb/article/2021/0422/60335059bbe2b58.jpg";}}}}i:29;s:213:" 真我Q3 Pro:引力黑电光蓝 萤火虫 真我Q3 Pro提供萤火虫、电光蓝、引力黑三款潮流配色,真我Q3提供迷幻银、科幻黑两款配色,深沉或闪亮,都拥有十足个性。 ";i:30;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:1:" ";}}i:31;s:2:" ";i:32;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:46:"升级超清画质,全新流光人像三摄 ";}}i:33;s:482:" 真我Q3 Pro影像实力全面升级,搭载全新升级的6400万流光人像三摄。超高像素主摄在细节繁多的场景能够以“分毫毕现”的超高解析力记录下一切重要信息,同时也为后期构图修图保留了更大空间。 夜景作为realme影像的看家本领,真我Q3 系列再度实现功能升级,推出了摩登、赛博朋克、燃情、星际空间、璀璨夜晚5款个性迥异的滤镜,让用户一键拍出夜景大片。 ";i:34;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2021/0422/ad73ee2b66fad6a.jpg";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2021/0422/ad73ee2b66fad6a.jpg']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:96:"https://rdimg.com/proxy/https://static.cnbetacdn.com/thumb/article/2021/0422/ad73ee2b66fad6a.jpg";}}}}i:35;s:302:" 真我Q3系列影像功能样张 全新推出的“流光人像”模式具有“单反级虚化”效果,过算法模拟专业人像效果,搭配美颜和HDR等多种算法,能让夜色中的人物主体更加突出、面部更加自然细腻,让普通人也能一键拍出人像大片。 ";i:36;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:57:"巨幅升级 诚意满满,真我Q3系列仅售999元起";}}i:37;s:651:" 真我Q3 Pro搭载旗舰芯天玑1100 5G芯片,双通道UFS3.1闪存以及真我GT系列同款3D钢化VC液冷,再一次突破千元5G的性能天花板;真我Q3搭载新一代高通5G芯片骁龙750G,同级首个电竞级VC液冷散热系统以及价位段首款120Hz变速电竞屏,将性能与体验再一次升级。真我Q3系列挑战多项同级最强配置,为年轻用户打造了新一代“千元机皇”。 售价方面,真我Q3 Pro提供6GB+128GB 、8GB+ 128GB 、8GB +256GB三个版本,售价分别为1599元、1799元、1999元。4月22日21:30起正式开启预售,4月29日0点,线上全渠道正式开售。 ";i:38;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2021/0422/e46302ae45eff48.jpg";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2021/0422/e46302ae45eff48.jpg']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:96:"https://rdimg.com/proxy/https://static.cnbetacdn.com/thumb/article/2021/0422/e46302ae45eff48.jpg";}}}}i:39;s:28:" 真我Q3 Pro开售信息 ";i:40;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2021/0422/a946fd6e08743c3.jpg";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2021/0422/a946fd6e08743c3.jpg']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:96:"https://rdimg.com/proxy/https://static.cnbetacdn.com/thumb/article/2021/0422/a946fd6e08743c3.jpg";}}}}i:41;s:192:" 真我Q3开售信息 真我Q3提供6+128GB、8+128GB两个版本,售价分别为1299元、1399元。4月22日21:30起正式开启预售,4月29日0点,在realme官网,欢太商城,";i:42;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:109:"https://c.duomai.com/track.php?k=nJ9QWa1VmJxYTPklWYmYDO5IDNy0DZp9VZ0l2cmYiJt92YuQmauc3d3ZkMlYkMlE0MlMHc0RHa9Q";s:8:"original";a:2:{i:0;s:117:"[URL='https://c.duomai.com/track.php?k=nJ9QWa1VmJxYTPklWYmYDO5IDNy0DZp9VZ0l2cmYiJt92YuQmauc3d3ZkMlYkMlE0MlMHc0RHa9Q']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:6:"京东";}}i:43;s:348:"等平台正式开售。此外,realme还联合《QQ飞车》手游和“京曝新品日”推出“抽欧皇卡、赢免单”活动,首销期间在京东平台购买真我Q3系列将有机会获得丰厚奖品。 在预售首销期间预定购买真我Q3和Q3 Pro的用户将额外赠送一年延保以及价值99元的真我有线耳机。 ";i:44;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2021/0422/f9d6e0d2f716379.jpg";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2021/0422/f9d6e0d2f716379.jpg']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:96:"https://rdimg.com/proxy/https://static.cnbetacdn.com/thumb/article/2021/0422/f9d6e0d2f716379.jpg";}}}}i:45;s:475:" 真我Q3i卖点信息汇总 另外,真我Q3系列还发布了千元入门机真我Q3i,其搭载双5G高性能芯片、90Hz畅速全面屏、4800万多功能三摄,以及5000mAh超大电池和18W疾速快充,配备4+128GB、6+128GB两种大存储规格,售价分别为1099元、1199元。在首销期间,两种版本立减100元,到手价最低仅需999元,无疑将让更多用户能够以更友好的价格,享受到5G科技带来的畅快与便捷。 ";i:46;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2021/0422/60f9dee536bbea1.jpg";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2021/0422/60f9dee536bbea1.jpg']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:96:"https://rdimg.com/proxy/https://static.cnbetacdn.com/thumb/article/2021/0422/60f9dee536bbea1.jpg";}}}}i:47;s:281:" 全球壁纸设计大赛 同时realme在发布会上还正式启动了新一季的“全球壁纸设计大赛”,邀请全球用户、专业设计师与设计院校学生以“设计无限”为主题,为真我GT创作壁纸。获奖者最高将赢取10000美元的奖励。";}, 1621686945, 1716420908
    Run Time: 0.003770

Included Files (107, XenForo Classes: 61)

  1. index.php
  2. library/XenForo/Autoloader.php
  3. library/XenForo/Application.php
  4. library/Zend/Registry.php
  5. library/Lgpl/utf8.php
  6. library/Zend/Config.php
  7. library/config.php
  8. library/XenForo/FrontController.php
  9. library/XenForo/Dependencies/Public.php
  10. library/XenForo/Dependencies/Abstract.php
  11. library/Zend/Controller/Request/Http.php
  12. library/Zend/Controller/Request/Abstract.php
  13. library/Zend/Uri.php
  14. library/Zend/Controller/Response/Http.php
  15. library/Zend/Controller/Response/Abstract.php
  16. library/XenForo/Model/DataRegistry.php
  17. library/XenForo/Model.php
  18. library/Zend/Db.php
  19. library/Zend/Db/Adapter/Mysqli.php
  20. library/Zend/Db/Adapter/Abstract.php
  21. library/Zend/Db/Select.php
  22. library/Zend/Db/Expr.php
  23. library/Zend/Db/Profiler.php
  24. library/Zend/Db/Statement/Mysqli.php
  25. library/Zend/Db/Statement.php
  26. library/Zend/Db/Statement/Interface.php
  27. library/Zend/Db/Profiler/Query.php
  28. library/XenForo/CodeEvent.php
  29. library/XenForo/Options.php
  30. library/XenForo/Link.php
  31. library/XenForo/Template/Helper/Core.php
  32. library/XenResource/Listener/Proxy.php
  33. library/XenGallery/Listener.php
  34. library/Brivium/BriviumHelper/EventListeners.php
  35. library/Brivium/BriviumHelper/1000271/EventListeners.php
  36. library/SV/RedisCache/Listener.php
  37. library/BestAnswer/Listener.php
  38. library/SV/RedisCache/XenForo/Model/DataRegistry.php
  39. library/Brivium/BriviumHelper/Model/ListenerClass.php
  40. library/Brivium/BriviumHelper/1000271/Model/ListenerClass.php
  41. library/XenForo/Router.php
  42. library/XenForo/Route/Filter.php
  43. library/XenForo/Route/Interface.php
  44. library/XenForo/Route/ResponseSuffix.php
  45. library/XenForo/Route/Prefix.php
  46. library/XenForo/Route/Prefix/Threads.php
  47. library/XenForo/RouteMatch.php
  48. library/XenForo/ControllerPublic/Thread.php
  49. library/XenForo/ControllerPublic/Abstract.php
  50. library/XenForo/Controller.php
  51. library/BestAnswer/ControllerPublic/Thread.php
  52. library/XenForo/Input.php
  53. library/XenForo/Session.php
  54. library/XenForo/Helper/Ip.php
  55. library/XenForo/Visitor.php
  56. library/XenForo/Model/User.php
  57. library/BestAnswer/Model/User.php
  58. library/XenResource/Listener/Proxy/ModelUser.php
  59. library/XenGallery/Model/User.php
  60. library/XenForo/Permission.php
  61. library/XenForo/Helper/Php.php
  62. library/XenForo/Phrase.php
  63. library/XenForo/Locale.php
  64. library/XenForo/ControllerHelper/ForumThreadPost.php
  65. library/XenForo/ControllerHelper/Abstract.php
  66. library/XenForo/Model/Thread.php
  67. library/SV/RedisCache/XenForo/Model/Thread.php
  68. library/BestAnswer/Model/Thread.php
  69. library/BestAnswer/Model/BestAnswer.php
  70. library/XenForo/Model/Forum.php
  71. library/XenForo/Helper/String.php
  72. library/XenForo/Model/Post.php
  73. library/FreddysHouse/SignatureOnce/Event/LoadClassModel.php
  74. library/BestAnswer/Model/Post.php
  75. library/FreddysHouse/SignatureOnce/Model/Post.php
  76. library/XenForo/Model/Attachment.php
  77. library/XenForo/Model/Node.php
  78. library/XenForo/Route/Prefix/Categories.php
  79. library/XenForo/Route/Prefix/Forums.php
  80. library/XenForo/ControllerResponse/View.php
  81. library/XenForo/ControllerResponse/Abstract.php
  82. library/XenResource/Listener/Template.php
  83. library/XenForo/ViewRenderer/HtmlPublic.php
  84. library/XenForo/ViewRenderer/Abstract.php
  85. library/XenForo/Template/Public.php
  86. library/XenForo/Template/Abstract.php
  87. library/XenForo/ViewPublic/Thread/View.php
  88. library/XenForo/ViewPublic/Base.php
  89. library/XenForo/View.php
  90. library/XenForo/BbCode/Parser.php
  91. library/XenForo/BbCode/Formatter/Base.php
  92. library/XenForo/ViewPublic/Helper/Message.php
  93. library/XenForo/BbCode/TextWrapper.php
  94. library/WhoHasVisited/Listener.php
  95. library/XenForo/Route/Prefix/Members.php
  96. library/XenForo/Template/FileHandler.php
  97. library/XenForo/Helper/File.php
  98. internal_data/templates/S.1,L.7,thread_view.php
  99. library/Brivium/RMDownloadTracker/EventListener/Listener.php
  100. library/XenForo/Route/Prefix/Posts.php
  101. library/XenForo/Model/Avatar.php
  102. library/XenForo/Helper/Criteria.php
  103. library/XenForo/Debug.php
  104. internal_data/templates/S.1,L.7,PAGE_CONTAINER.php
  105. internal_data/templates/S.1,L.7,xengallery_tab_links.php
  106. internal_data/templates/S.1,L.7,resources_tab_links.php
  107. library/XenForo/ViewRenderer/Json.php