<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ereg Archives - EVO Hosting</title>
	<atom:link href="https://evohosting.in.th/tag/ereg/feed/" rel="self" type="application/rss+xml" />
	<link>https://evohosting.in.th/tag/ereg/</link>
	<description>EVO Hosting สัญลักษณ์แห่งความเร็วแรงของโฮสติ้งที่ไม่เหมือนใคร สัมผัสความแรงเหนือชั้นของ Hosting จากขุมพลัง SSD Host ผสานกับเทคโนโลยี่ RAID 5 รองรับทุกความต้องการของคุณ รับรองไม่ผิดหวังแน่นอน</description>
	<lastBuildDate>Wed, 26 Jun 2013 02:20:29 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.1</generator>
	<item>
		<title>การแก้ไข Error Deprecated: Function eregi() is deprecated</title>
		<link>https://evohosting.in.th/%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b9%81%e0%b8%81%e0%b9%89%e0%b9%84%e0%b8%82-error-deprecated-function-eregi-is-deprecated/</link>
		
		<dc:creator><![CDATA[EVOHosting]]></dc:creator>
		<pubDate>Mon, 08 Apr 2013 10:57:48 +0000</pubDate>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Direct Admin]]></category>
		<category><![CDATA[เรื่องอื่น ๆ]]></category>
		<category><![CDATA[ereg]]></category>
		<category><![CDATA[eregi]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[preg_match]]></category>
		<category><![CDATA[vps]]></category>
		<category><![CDATA[webhosting]]></category>
		<category><![CDATA[วีพีเอส]]></category>
		<category><![CDATA[โฮสติ้ง]]></category>
		<guid isPermaLink="false">http://www.evohosting.in.th/?p=459</guid>

					<description><![CDATA[<p>หลังจากที่ EVO Hosting ได้อัพเกรด PHP 5.2 เป็น PHP 5.3 ไป นั้น หลายท่านพบ error ที่แสดงบนหน้าเว็บ เช่น Deprecated: Function eregi() is deprecated in /home/Account/domains/YourDomain.com/public_html/config.in.php on line 10 นั่นหมายความว่า Function ที่เว็บท่านใช้อยู่คือ eregi นั้น ได้ถูกยกเลิกการใช้งานใน PHP 5.3 แล้ว ต้องหา Function ใหม่มาใช้งาน นั่นคือ Function preg_match โดยแก้ไขจากเดิม สำหรับ Function eregi ให้แก้ไขตามนี้ครับ if (eregi("config.in.php",$PHP_SELF)) { เป็น if (preg_match("/config.in.php/i",$PHP_SELF)) { และแก้ไขในทุก ๆ Line [&#8230;]</p>
<p>The post <a href="https://evohosting.in.th/%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b9%81%e0%b8%81%e0%b9%89%e0%b9%84%e0%b8%82-error-deprecated-function-eregi-is-deprecated/">การแก้ไข Error Deprecated: Function eregi() is deprecated</a> appeared first on <a href="https://evohosting.in.th">EVO Hosting</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="http://www.evohosting.in.th/wp-content/uploads/2012/12/logo_php5.gif" rel="lightbox[459]"><img decoding="async" src="http://www.evohosting.in.th/wp-content/uploads/2012/12/logo_php5.gif" alt="logo_php5" width="103" height="56" class="alignnone size-full wp-image-237" /></a></p>
<p>หลังจากที่ <strong>EVO</strong> <a href="http://www.evohosting.in.th/"><strong>Hosting</strong></a> ได้อัพเกรด PHP 5.2 เป็น PHP 5.3 ไป นั้น หลายท่านพบ error ที่แสดงบนหน้าเว็บ เช่น</p>
<p><code>Deprecated: Function eregi() is deprecated in /home/Account/domains/YourDomain.com/public_html/config.in.php on line 10</code></p>
<p>นั่นหมายความว่า Function ที่เว็บท่านใช้อยู่คือ eregi นั้น ได้ถูกยกเลิกการใช้งานใน PHP 5.3 แล้ว</p>
<p>ต้องหา Function ใหม่มาใช้งาน นั่นคือ Function preg_match</p>
<p>โดยแก้ไขจากเดิม</p>
<p><strong>สำหรับ Function <em>eregi</em> ให้แก้ไขตามนี้ครับ</strong></p>
<p><code>if (eregi("config.in.php",$PHP_SELF)) {</code></p>
<p>เป็น</p>
<p><code>if (preg_match("/config.in.php/i",$PHP_SELF)) {</code></p>
<p>และแก้ไขในทุก ๆ Line ที่แสดง error</p>
<p><strong>สำหรับ Function <em>ereg</em> ให้แก้ไขตามนี้ครับ</strong></p>
<p><code>if (ereg("config.in.php",$PHP_SELF)) {</code></p>
<p>เป็น</p>
<p><code>if (preg_match("/config.in.php/",$PHP_SELF)) {</code></p>
<p>และแก้ไขในทุก ๆ Line ที่แสดง error</p>
<p><strong>สำหรับ Function <em>ereg_replace</em> ให้แก้ไขตามนี้ครับ</strong></p>
<p><code>$arr[2]  = ereg_replace("((http|ftp|https)://[^[:space:]<>]{3,})","<a href=\"\\1\" target=_blank>\\1</a>",$arr[2]);</code></p>
<p>เป็น</p>
<p><code>$arr[2]  = preg_replace("((http|ftp|https)://[^[:space:]<>]{3,})","<a href=\"\\1\" target=_blank>\\1</a>",$arr[2]);</code></p>
<p>และแก้ไขในทุก ๆ Line ที่แสดง error</p>
<p>The post <a href="https://evohosting.in.th/%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b9%81%e0%b8%81%e0%b9%89%e0%b9%84%e0%b8%82-error-deprecated-function-eregi-is-deprecated/">การแก้ไข Error Deprecated: Function eregi() is deprecated</a> appeared first on <a href="https://evohosting.in.th">EVO Hosting</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
