<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>「用 PHP 讀寫 Excel 檔案」的迴響</title>
	<atom:link href="http://blog.linym.net/archives/229/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.linym.net/archives/229</link>
	<description>我的學習心得、筆記</description>
	<lastBuildDate>Tue, 07 Feb 2012 08:52:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>由：Cheng</title>
		<link>http://blog.linym.net/archives/229/comment-page-2#comment-98793</link>
		<dc:creator>Cheng</dc:creator>
		<pubDate>Tue, 29 Nov 2011 03:46:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.linym.net/?p=229#comment-98793</guid>
		<description>Hi Johnny,

I have a problem when executing your codes. It returns a fatal error as below:

&quot;Fatal error: Call to undefined function spl_autoload_register() in XXX/Classes\PHPExcel\Autoloader.php on line 40&quot;

Just want to ask how to solve this error?

p.S)my php version is php5.0.1</description>
		<content:encoded><![CDATA[<p>Hi Johnny,</p>
<p>I have a problem when executing your codes. It returns a fatal error as below:</p>
<p>"Fatal error: Call to undefined function spl_autoload_register() in XXX/Classes\PHPExcel\Autoloader.php on line 40"</p>
<p>Just want to ask how to solve this error?</p>
<p>p.S)my php version is php5.0.1</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：flylon</title>
		<link>http://blog.linym.net/archives/229/comment-page-2#comment-56876</link>
		<dc:creator>flylon</dc:creator>
		<pubDate>Sat, 14 May 2011 00:38:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.linym.net/?p=229#comment-56876</guid>
		<description>&lt;a href=&quot;#comment-53448&quot; rel=&quot;nofollow&quot;&gt;@Johnny &lt;/a&gt; 
找了一個早上，解決了，供參考嚕~ (遇到一樣問題的flylon)

// phpExcel轉日期函式	
	function excelTime($days, $time=false){
		if(is_numeric($days)){
			//based on 1900-1-1
			$jd = GregorianToJD(1, 1, 1970);
			$gregorian = JDToGregorian($jd+intval($days)-25569);
			$myDate = explode(&#039;/&#039;,$gregorian);
			$myDateStr = str_pad($myDate[2],4,&#039;0&#039;, STR_PAD_LEFT)
					.&quot;-&quot;.str_pad($myDate[0],2,&#039;0&#039;, STR_PAD_LEFT)
					.&quot;-&quot;.str_pad($myDate[1],2,&#039;0&#039;, STR_PAD_LEFT)
					.($time?&quot; 00:00:00&quot;:&#039;&#039;);
			return $myDateStr;
		}
		return $days;
	}</description>
		<content:encoded><![CDATA[<p><a href="#comment-53448" rel="nofollow">@Johnny </a><br />
找了一個早上，解決了，供參考嚕~ (遇到一樣問題的flylon)</p>
<p>// phpExcel轉日期函式<br />
	function excelTime($days, $time=false){<br />
		if(is_numeric($days)){<br />
			//based on 1900-1-1<br />
			$jd = GregorianToJD(1, 1, 1970);<br />
			$gregorian = JDToGregorian($jd+intval($days)-25569);<br />
			$myDate = explode('/',$gregorian);<br />
			$myDateStr = str_pad($myDate[2],4,'0', STR_PAD_LEFT)<br />
					."-".str_pad($myDate[0],2,'0', STR_PAD_LEFT)<br />
					."-".str_pad($myDate[1],2,'0', STR_PAD_LEFT)<br />
					.($time?" 00:00:00":'');<br />
			return $myDateStr;<br />
		}<br />
		return $days;<br />
	}</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：Audry Goldfischer</title>
		<link>http://blog.linym.net/archives/229/comment-page-2#comment-53753</link>
		<dc:creator>Audry Goldfischer</dc:creator>
		<pubDate>Tue, 01 Mar 2011 02:01:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.linym.net/?p=229#comment-53753</guid>
		<description>Oh my goodness! a tremendous article dude. Thank you Nonetheless I&#039;m experiencing difficulty with ur rss . Don’t know why Unable to subscribe to it. Is there anyone getting similar rss downside? Anyone who is aware of kindly respond. Thnkx</description>
		<content:encoded><![CDATA[<p>Oh my goodness! a tremendous article dude. Thank you Nonetheless I'm experiencing difficulty with ur rss . Don’t know why Unable to subscribe to it. Is there anyone getting similar rss downside? Anyone who is aware of kindly respond. Thnkx</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：Johnny</title>
		<link>http://blog.linym.net/archives/229/comment-page-2#comment-53448</link>
		<dc:creator>Johnny</dc:creator>
		<pubDate>Mon, 21 Feb 2011 17:09:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.linym.net/?p=229#comment-53448</guid>
		<description>文件上寫
In Excel, dates are stored as numeric values counting the number of days elapsed since 1900-01-01. For example, the date &#039;2008-12-31&#039; is represented as 39813.</description>
		<content:encoded><![CDATA[<p>文件上寫<br />
In Excel, dates are stored as numeric values counting the number of days elapsed since 1900-01-01. For example, the date '2008-12-31' is represented as 39813.</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：jacky</title>
		<link>http://blog.linym.net/archives/229/comment-page-2#comment-47254</link>
		<dc:creator>jacky</dc:creator>
		<pubDate>Mon, 04 Oct 2010 07:48:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.linym.net/?p=229#comment-47254</guid>
		<description>excel裡的日期讀進來會變成數字，要如何轉換呢?</description>
		<content:encoded><![CDATA[<p>excel裡的日期讀進來會變成數字，要如何轉換呢?</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：PHP and Excel &#171; Abner&#8217;s Postgraduate Days</title>
		<link>http://blog.linym.net/archives/229/comment-page-2#comment-47094</link>
		<dc:creator>PHP and Excel &#171; Abner&#8217;s Postgraduate Days</dc:creator>
		<pubDate>Tue, 28 Sep 2010 23:07:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.linym.net/?p=229#comment-47094</guid>
		<description>[...] 憂藍夢境‧部落格 » 用 PHP 讀寫 Excel 檔案 [...]</description>
		<content:encoded><![CDATA[<p>[...] 憂藍夢境‧部落格 » 用 PHP 讀寫 Excel 檔案 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：azureshin</title>
		<link>http://blog.linym.net/archives/229/comment-page-2#comment-46671</link>
		<dc:creator>azureshin</dc:creator>
		<pubDate>Thu, 09 Sep 2010 09:24:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.linym.net/?p=229#comment-46671</guid>
		<description>不好意思，其實我是希望讀出來的資料能塞進mySQL，用getCellByColumnAndRow($column, $row)會讀出好多筆重複的....請問能舉個簡單例子嗎 ? 謝謝</description>
		<content:encoded><![CDATA[<p>不好意思，其實我是希望讀出來的資料能塞進mySQL，用getCellByColumnAndRow($column, $row)會讀出好多筆重複的....請問能舉個簡單例子嗎 ? 謝謝</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：lym520</title>
		<link>http://blog.linym.net/archives/229/comment-page-2#comment-46670</link>
		<dc:creator>lym520</dc:creator>
		<pubDate>Thu, 09 Sep 2010 08:06:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.linym.net/?p=229#comment-46670</guid>
		<description>我的 $val 並不是取得整列喔，而是某個欄位的內容，
只是用一個迴圈全部跑完而已，
利用 getCellByColumnAndRow($column, $row) 即可取得某列某欄了。</description>
		<content:encoded><![CDATA[<p>我的 $val 並不是取得整列喔，而是某個欄位的內容，<br />
只是用一個迴圈全部跑完而已，<br />
利用 getCellByColumnAndRow($column, $row) 即可取得某列某欄了。</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：azureshin</title>
		<link>http://blog.linym.net/archives/229/comment-page-2#comment-46667</link>
		<dc:creator>azureshin</dc:creator>
		<pubDate>Thu, 09 Sep 2010 07:57:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.linym.net/?p=229#comment-46667</guid>
		<description>以您的$val來說是包含整列，所以echo $val也是整列，要怎樣才能印出這一列的某個欄位呢 ?</description>
		<content:encoded><![CDATA[<p>以您的$val來說是包含整列，所以echo $val也是整列，要怎樣才能印出這一列的某個欄位呢 ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：taiwancmh</title>
		<link>http://blog.linym.net/archives/229/comment-page-1#comment-42378</link>
		<dc:creator>taiwancmh</dc:creator>
		<pubDate>Thu, 13 May 2010 08:48:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.linym.net/?p=229#comment-42378</guid>
		<description>如果超過25欄位～譬如BA、BB、BC
要怎麼處理呢？</description>
		<content:encoded><![CDATA[<p>如果超過25欄位～譬如BA、BB、BC<br />
要怎麼處理呢？</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：荣华月饼</title>
		<link>http://blog.linym.net/archives/229/comment-page-1#comment-32952</link>
		<dc:creator>荣华月饼</dc:creator>
		<pubDate>Tue, 11 Aug 2009 12:54:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.linym.net/?p=229#comment-32952</guid>
		<description>没想到用php读写Excel文档那么简单的，谢啦。</description>
		<content:encoded><![CDATA[<p>没想到用php读写Excel文档那么简单的，谢啦。</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：lym520</title>
		<link>http://blog.linym.net/archives/229/comment-page-1#comment-32941</link>
		<dc:creator>lym520</dc:creator>
		<pubDate>Tue, 11 Aug 2009 01:59:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.linym.net/?p=229#comment-32941</guid>
		<description>&lt;a href=&quot;#comment-32688&quot; rel=&quot;nofollow&quot;&gt;@網頁設計&lt;/a&gt; 
不好意思唷～這裡只放朋友的連結。</description>
		<content:encoded><![CDATA[<p><a href="#comment-32688" rel="nofollow">@網頁設計</a><br />
不好意思唷～這裡只放朋友的連結。</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：Angel</title>
		<link>http://blog.linym.net/archives/229/comment-page-1#comment-32796</link>
		<dc:creator>Angel</dc:creator>
		<pubDate>Fri, 07 Aug 2009 13:49:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.linym.net/?p=229#comment-32796</guid>
		<description>謝謝分享,非常有用!</description>
		<content:encoded><![CDATA[<p>謝謝分享,非常有用!</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：網頁設計</title>
		<link>http://blog.linym.net/archives/229/comment-page-1#comment-32688</link>
		<dc:creator>網頁設計</dc:creator>
		<pubDate>Wed, 05 Aug 2009 09:27:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.linym.net/?p=229#comment-32688</guid>
		<description>不知道你有沒有意願幫我們弄個文字連結呢?! 請連絡我~~干溫啊!!!</description>
		<content:encoded><![CDATA[<p>不知道你有沒有意願幫我們弄個文字連結呢?! 請連絡我~~干溫啊!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：lym520</title>
		<link>http://blog.linym.net/archives/229/comment-page-1#comment-32500</link>
		<dc:creator>lym520</dc:creator>
		<pubDate>Tue, 28 Jul 2009 02:59:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.linym.net/?p=229#comment-32500</guid>
		<description>&lt;a href=&quot;#comment-32498&quot; rel=&quot;nofollow&quot;&gt;@JosephPeng&lt;/a&gt; 
沒問題唷！
只要有註明來源及連結都非常歡迎轉貼。</description>
		<content:encoded><![CDATA[<p><a href="#comment-32498" rel="nofollow">@JosephPeng</a><br />
沒問題唷！<br />
只要有註明來源及連結都非常歡迎轉貼。</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：JosephPeng</title>
		<link>http://blog.linym.net/archives/229/comment-page-1#comment-32498</link>
		<dc:creator>JosephPeng</dc:creator>
		<pubDate>Tue, 28 Jul 2009 01:37:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.linym.net/?p=229#comment-32498</guid>
		<description>謝謝您的分享,
我想將這段code貼在我的筆記內方便日後查詢用,
想徵得您的同意,
可否在著名出處的情況下引用您的程式碼?
謝謝您!</description>
		<content:encoded><![CDATA[<p>謝謝您的分享,<br />
我想將這段code貼在我的筆記內方便日後查詢用,<br />
想徵得您的同意,<br />
可否在著名出處的情況下引用您的程式碼?<br />
謝謝您!</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：lym520</title>
		<link>http://blog.linym.net/archives/229/comment-page-1#comment-27197</link>
		<dc:creator>lym520</dc:creator>
		<pubDate>Tue, 03 Feb 2009 09:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.linym.net/?p=229#comment-27197</guid>
		<description>Thank you, You&#039;re right! :p</description>
		<content:encoded><![CDATA[<p>Thank you, You're right! :p</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：Mark</title>
		<link>http://blog.linym.net/archives/229/comment-page-1#comment-27185</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Tue, 03 Feb 2009 02:57:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.linym.net/?p=229#comment-27185</guid>
		<description>I was looking for the solution that how to use PHPExcel to get row and column, your article really inspired me. 

just one thing though
$val = $sheet-&gt;getCellByColumnAndRow($j, $i)-&gt;getValue();
shouldn&#039;t above code be like this
$val = $sheet-&gt;getCellByColumnAndRow($column, $row)-&gt;getValue();

thanks man</description>
		<content:encoded><![CDATA[<p>I was looking for the solution that how to use PHPExcel to get row and column, your article really inspired me. </p>
<p>just one thing though<br />
$val = $sheet-&gt;getCellByColumnAndRow($j, $i)-&gt;getValue();<br />
shouldn't above code be like this<br />
$val = $sheet-&gt;getCellByColumnAndRow($column, $row)-&gt;getValue();</p>
<p>thanks man</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：mayer</title>
		<link>http://blog.linym.net/archives/229/comment-page-1#comment-23034</link>
		<dc:creator>mayer</dc:creator>
		<pubDate>Sat, 25 Oct 2008 16:45:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.linym.net/?p=229#comment-23034</guid>
		<description>滿特別的!</description>
		<content:encoded><![CDATA[<p>滿特別的!</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：JohnPuPu &#187; Blog Archive &#187; links for 2008-09-18</title>
		<link>http://blog.linym.net/archives/229/comment-page-1#comment-19271</link>
		<dc:creator>JohnPuPu &#187; Blog Archive &#187; links for 2008-09-18</dc:creator>
		<pubDate>Fri, 19 Sep 2008 06:03:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.linym.net/?p=229#comment-19271</guid>
		<description>[...] 用 PHP 讀寫 Excel 檔案 &#124; 憂藍夢境‧部落格 (tags: php) [...]</description>
		<content:encoded><![CDATA[<p>[...] 用 PHP 讀寫 Excel 檔案 | 憂藍夢境‧部落格 (tags: php) [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

