Page Time: 0.0783s

Memory: 10.5898 MB (Peak: 11.7104 MB)

Queries (12, time: 0.0069s, 8.8%)

  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.000736
    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.000167
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using where
  3. SELECT *
    FROM xf_brivium_addon
    ORDER BY addon_id
    Run Time: 0.000358
    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.000126
  5. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000149
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  6. 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: 297318
    Run Time: 0.000413
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  7. 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.000539
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  8. 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: 297318
    Run Time: 0.002537
    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
  9. INSERT  INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 297318
    Run Time: 0.000101
  10. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: e240a5238682b6397f0b9679fbf60bd6, , 1714743721
    Run Time: 0.000642
  11. 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=297318, 1714740121,
    Run Time: 0.000103
  12. 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, 303939, a:34:{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:75:"韩国疫情来势汹汹,三星电子的“突围大计”蒙上阴影。";}}i:1;s:297:"当前,中国疫情形势正在好转,但全球其他国家却不断告急,其中韩国的疫情最牵动人心。截止北京时间3月4日15:00,韩国累计确诊病例达5621例,相较于韩国5164万的总人口数量,患病率已经超过万分之一,已是中国的近2倍。 ";i:2;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2020/0305/6854d268f582d85.jpg";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2020/0305/6854d268f582d85.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/2020/0305/6854d268f582d85.jpg";}}}}i:3;s:1236:" 韩国绝大部分确诊病例集中于大邱和庆尚北道地区,而临近的龟尾市,号称韩国的“硅谷”,是韩国内陆最大的电子工业城市,拥有电子、半导体、通讯设备等完整的产业链。 三星电子、LG电子、LG Display等科技巨头都有在龟尾市设立工厂、分公司。 当前韩国疫情,正在危及三星、LG在龟尾市的工厂。据韩国国际广播电台报道,刚刚复工不久的龟尾市三星手机工厂,3月2日再度出现第4例确诊病例,再次被迫停工,这已是短期内的第二次停工。 据三星电子披露,该工厂是其在韩国境内唯一一家智能手机生产基地,承担着高端手机Galaxy Z Flip、Galaxy S20的生产任务,而这两款旗舰手机被寄予厚望,是三星手机业务2020年突围的关键,如今却被疫情“黑天鹅”的阴影笼罩。 而刚过去不久的2019年,三星电子的日子过得并不顺利。 近日,三星电子披露的2019年度财报显示,全年营收230.4万亿韩元(约合人民币13474亿元),同比下滑了5.5%;净利润21.74万亿韩元(约合人民币1271亿元),同比暴跌51%,遭遇腰斩,已跌回2016年的盈利水平。 ";i:4;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2020/0305/184587a1ea3bb27.png";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2020/0305/184587a1ea3bb27.png']";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/2020/0305/184587a1ea3bb27.png";}}}}i:5;s:411:" 净利润大幅滑坡,与2019年的智能手机、显示面板、半导体等业务面临全球的激烈竞争密切相关。截止3月4日收盘,三星电子的总市值高达369.07万亿韩元(约合人民币达21613亿元)。 在财报中,三星电子寄希望于2020年发起“突围大计”,重振三星电子“帝国”,然而一场突如其来的疫情,正在增加不确定性。 ";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:27:"三星手机,败走中国";}}i:7;s:289:" 2019年9月,三星关闭了再中国大陆的最后一家工厂(惠州工厂),并裁减3000人,全面停止手机产品在中国的生产。与此同时,三星智能手机亦正在丢掉庞大的中国智能手机消费市场,2019年其在中国市场份额已跌至1%。 ";i:8;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2020/0305/0624ec567002749.png";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2020/0305/0624ec567002749.png']";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/2020/0305/0624ec567002749.png";}}}}i:9;s:442:" 图片来源:电子工程专辑整理自Counterpoint 三星手机在中国市场节节败退的原因并不难解释,首先本地手机品牌的崛起,大量主打性价比的国产安卓智能手机问世,对三星而言无疑是沉重一击。加上2016年的“爆炸门”事件,令三星手机的中国市场份额一路崩塌。 不仅仅是中国市场,三星在全球智能手机市场的角逐中,正逐渐输给了";i:10;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:90:"https://apple.pvxt.net/c/1251234/435400/7639?u=https%3A%2F%2Fwww.apple.com%2Fcn%2Fmusic%2F";s:8:"original";a:2:{i:0;s:98:"[URL='https://apple.pvxt.net/c/1251234/435400/7639?u=https%3A%2F%2Fwww.apple.com%2Fcn%2Fmusic%2F']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:6:"苹果";}}i:11;s:59:"。另外,号称这智能手机未来的5G时代,也被";i:12;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:117:"https://c.duomai.com/track.php?k=WP0ZSPklWdlZyN4MTPklWYmYDO5IDNy0DZp9VZ0l2cmYiRyUSbvNmLsxWYtZnL3d3dGJTJGJTJBNTJzBHd0h";s:8:"original";a:2:{i:0;s:125:"[URL='https://c.duomai.com/track.php?k=WP0ZSPklWdlZyN4MTPklWYmYDO5IDNy0DZp9VZ0l2cmYiRyUSbvNmLsxWYtZnL3d3dGJTJGJTJBNTJzBHd0h']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:6:"华为";}}i:13;s:252:"超越。 据IDC的跟踪数据显示,2019年第四季度,苹果累计出货量达7380万台,同比增长7.9%,取代三星成为了全球智能手机的销量冠军,市场份额升至20%,而三星的全球市场份额则下滑至18.8%。 ";i:14;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2020/0305/6738c4e2bfbc3fc.jpg";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2020/0305/6738c4e2bfbc3fc.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/2020/0305/6738c4e2bfbc3fc.jpg";}}}}i:15;s:1084:" 另外,在5G手机市场,华为亦取代了三星,成为全球5G手机全年销量的领跑者。据Strategy Analytics最新报告显示,2019年全球5G智能手机出货量达到1900万台,其中华为占据的市场份额为第一位,占比大约37%,三星以35.8%的市场份额位居第二位。 5G,将是2020年所有手机厂商的必争之地。此前,三星曾定下目标,2020年将出货5G手机1亿至3亿部,将带动三星智能手机业务强劲增长。 但,被寄予厚望的旗舰机型Galaxy S20系列遭遇滑铁卢。2月27日在韩国上市,第一天仅卖出7.08万台,相比Galaxy S10系列在发售24小时内14万部的销售成绩,暴跌近50%,号称最惨旗舰机发售。 面对令人沮丧的发售数据,三星发言人回应表示,由于担心冠状病毒感染,新手机的折扣大幅下降以及线下商店的访客数量影响了销售。 由此可见,疫情不仅使得智能手机工厂屡次停工,还直接影响了最新款旗舰机的销售,手机“突围”的不确定性正在增加。 ";i:16;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:48:"三星最赚钱的业务,正面临最大考验";}}i:17;s:117:" 不仅仅是手机,三星一直傲世全球的半导体业务,在2019年遭遇了有史以来最大的挑战:";i:18;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:18:"日韩贸易摩擦";}}i:19;s:874:"。 值得一提的是,半导体业务,历来都是三星最赚钱的现金奶牛,一直占据着全公司70%以上的净利润。但2019年却突然出现断崖式下跌,据财报数据显示,2019年三星半导体业务的运营利润为14.02万亿韩元,相比2018年的44.57万亿韩元,暴跌近70%。 三星半导体业务盈利暴跌最主要的原因正是,日韩贸易摩擦,被卡住脖子。 2019年7月1日,日本宣布,加强对韩国的出口管制,将对半导体材料进行严格审查,同时禁止日本企业通过第三国向韩国出口相关产品。 半导体产业,是韩国20多年努力铸成的国之重器,但韩国的半导体产业以中游的制造为主。上游的半导体核心材料、精密半导体设备均掌握在日本手中,韩国半导体行业严重依赖对于日本进口设备和材料。 ";i:20;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2020/0305/5bb2fdc21f68a85.jpg";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2020/0305/5bb2fdc21f68a85.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/2020/0305/5bb2fdc21f68a85.jpg";}}}}i:21;s:1201:" 半导体产业链 以高纯度氟化氢为例,这是蚀刻晶圆半导体的核心关键材料,不可或缺,而日本占据了全球产能的70%。2019年8月,日本对韩出口的氟化氢数量、金额双双为零,9月出口额同比锐减99.4%,直接导致三星半导体业务遭受重创。 无奈之下,三星计划将半导体制造中使用的约220余种日本原材料、化学药品,全部替换为本国产品或其他国家产品,甚至计划全部国产化。 但大部分半导体材料、设备的技术含量极高,三星的国产替代之路,无疑是相当漫长、且耗资巨大。 在净利润腰斩的情况下,三星“含泪”大规模斥资研发。据2019年财报数据显示,三星电子全年的研发支出高达20.1万亿韩元(约合人民币1177亿元),创下历史新高,只为摆脱日本“卡脖子”的困境。 目前,日本对于韩国出口管制有所缓,但管制依然存在。 同时,日本疫情也不容乐观,半导体产业链或多或少亦受到波及,尽管出口管制缓解之下,三星进口的成本亦存在上涨的预期,将进一步压制2020年半导体业务的盈利能力。 ";i:22;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:30:"三星面板,渐渐被蚕食";}}i:23;s:292:" 2019年三星的另外一块蛋糕:显示面板产业,盈利能力也在缩水。 据2019年财报数据显示,三星的显示面板部门贡献的利润大幅下滑近49%,全年运营利润下降到1.58万亿韩元(约合人民币92.5亿元)。 对此,三星的解释是,";i:24;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:84:"中国竞争对手的产能迅速扩张,液晶面板的价格下跌超过预期。";}}i:25;s:35:" 三星的这句解释背后是,";i:26;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:27;s:214:"方、华星光电、天马等中国面板公司正在不断崛起。2018年、2019年京东方(00725)连续两年成为全球最大的LCD液晶面板厂商。在5个细分领域出货量全部全球第一。 ";i:28;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2020/0305/d80b8949d301c49.jpg";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2020/0305/d80b8949d301c49.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/2020/0305/d80b8949d301c49.jpg";}}}}i:29;s:67:" 据市场研究机构IHS Markit指出,在三星电子2019年的";i:30;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_76344%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_76344%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:6:"电视";}}i:31;s:119:"出货量中,超过60%的电视产品均采用中国大陆与中国台湾供应的LCD面板。 但在价格更高的";i:32;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:33;s:805:"面板市场,三星依然占据着绝对优势。2019年,三星拥有手机AMOLED面板85.4%的市场份额。 手机、半导体、显示面板,三星电子笑傲江湖的三大看家本领,正在面临激烈的全球市场竞争。同时,2020年开局之际,又遇上疫情的“黑天鹅”,三星将如何突围? “韩国人的一生离不开的三件事分别是死亡、税收、三星。”这是韩国坊间的一句口头禅。可以看到,三星集团在韩国的影响力。 众所周知,韩国经济最大的特色是大型财团垄断。三星、现代、LG、SK这四大韩国企业集团的年营业额总额占韩国GDP的比例,一度高达60%。 意味着,四大企业集团的经营发展,直接关系到韩国经济的走向。 撰文/制表:全小景";}, 1621686945, 1714740121
    Run Time: 0.000985

Included Files (108, XenForo Classes: 62)

  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/XenForo/Helper/Cookie.php
  83. library/XenResource/Listener/Template.php
  84. library/XenForo/ViewRenderer/HtmlPublic.php
  85. library/XenForo/ViewRenderer/Abstract.php
  86. library/XenForo/Template/Public.php
  87. library/XenForo/Template/Abstract.php
  88. library/XenForo/ViewPublic/Thread/View.php
  89. library/XenForo/ViewPublic/Base.php
  90. library/XenForo/View.php
  91. library/XenForo/BbCode/Parser.php
  92. library/XenForo/BbCode/Formatter/Base.php
  93. library/XenForo/ViewPublic/Helper/Message.php
  94. library/XenForo/BbCode/TextWrapper.php
  95. library/WhoHasVisited/Listener.php
  96. library/XenForo/Route/Prefix/Members.php
  97. library/XenForo/Template/FileHandler.php
  98. library/XenForo/Helper/File.php
  99. internal_data/templates/S.1,L.7,thread_view.php
  100. library/Brivium/RMDownloadTracker/EventListener/Listener.php
  101. library/XenForo/Route/Prefix/Posts.php
  102. library/XenForo/Model/Avatar.php
  103. library/XenForo/Helper/Criteria.php
  104. library/XenForo/Debug.php
  105. internal_data/templates/S.1,L.7,PAGE_CONTAINER.php
  106. internal_data/templates/S.1,L.7,xengallery_tab_links.php
  107. internal_data/templates/S.1,L.7,resources_tab_links.php
  108. library/XenForo/ViewRenderer/Json.php