<?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"
	>
<channel>
	<title>Comments on: 缺乏 Model 支援的 Zend Framework</title>
	<atom:link href="http://blog.gslin.org/archives/2008/03/27/1456/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.gslin.org/archives/2008/03/27/1456/</link>
	<description>幹壞事是進步最大的原動力</description>
	<pubDate>Wed, 03 Dec 2008 07:24:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: Gea-Suan Lin</title>
		<link>http://blog.gslin.org/archives/2008/03/27/1456/#comment-279657</link>
		<dc:creator>Gea-Suan Lin</dc:creator>
		<pubDate>Tue, 24 Jun 2008 16:32:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gslin.org/archives/2008/03/27/1456/#comment-279657</guid>
		<description>用 Zend_View 其實還不錯。</description>
		<content:encoded><![CDATA[<p>用 Zend_View 其實還不錯。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: weck</title>
		<link>http://blog.gslin.org/archives/2008/03/27/1456/#comment-279653</link>
		<dc:creator>weck</dc:creator>
		<pubDate>Tue, 24 Jun 2008 16:17:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gslin.org/archives/2008/03/27/1456/#comment-279653</guid>
		<description>推荐PHPTAL. PHPTAL用属性来定义模板语言的逻辑元素, 而不是像Smarty自定义了一套特殊格式的语法. 这样, 在向设计好的页面添加逻辑控制时, 就不会破坏当前页面的布局, 便于页面设计师和程序员之间的协作.</description>
		<content:encoded><![CDATA[<p>推荐PHPTAL. PHPTAL用属性来定义模板语言的逻辑元素, 而不是像Smarty自定义了一套特殊格式的语法. 这样, 在向设计好的页面添加逻辑控制时, 就不会破坏当前页面的布局, 便于页面设计师和程序员之间的协作.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gea-Suan Lin</title>
		<link>http://blog.gslin.org/archives/2008/03/27/1456/#comment-262778</link>
		<dc:creator>Gea-Suan Lin</dc:creator>
		<pubDate>Thu, 27 Mar 2008 16:04:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gslin.org/archives/2008/03/27/1456/#comment-262778</guid>
		<description>我是用 registerAutoload() 沒錯，PHP 端的效率現在沒有那麼在乎了...</description>
		<content:encoded><![CDATA[<p>我是用 registerAutoload() 沒錯，PHP 端的效率現在沒有那麼在乎了&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eddie</title>
		<link>http://blog.gslin.org/archives/2008/03/27/1456/#comment-262759</link>
		<dc:creator>eddie</dc:creator>
		<pubDate>Thu, 27 Mar 2008 14:54:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gslin.org/archives/2008/03/27/1456/#comment-262759</guid>
		<description>路人經過 :)
我目前的作法跟ronnywang一樣，也是把models加到include_path裡

我比較懶得寫require又比較不在乎效率
在bootstrap裡面加上：
require_once 'Zend/Loader.php';
Zend_Loader::registerAutoload();

之後就連require或load都省下來了 :)</description>
		<content:encoded><![CDATA[<p>路人經過 :)<br />
我目前的作法跟ronnywang一樣，也是把models加到include_path裡</p>
<p>我比較懶得寫require又比較不在乎效率<br />
在bootstrap裡面加上：<br />
require_once &#8216;Zend/Loader.php&#8217;;<br />
Zend_Loader::registerAutoload();</p>
<p>之後就連require或load都省下來了 :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gea-Suan Lin</title>
		<link>http://blog.gslin.org/archives/2008/03/27/1456/#comment-262671</link>
		<dc:creator>Gea-Suan Lin</dc:creator>
		<pubDate>Thu, 27 Mar 2008 06:38:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gslin.org/archives/2008/03/27/1456/#comment-262671</guid>
		<description>先照 ronnywang 的方法作了...</description>
		<content:encoded><![CDATA[<p>先照 ronnywang 的方法作了&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ronnywang</title>
		<link>http://blog.gslin.org/archives/2008/03/27/1456/#comment-262669</link>
		<dc:creator>ronnywang</dc:creator>
		<pubDate>Thu, 27 Mar 2008 06:18:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gslin.org/archives/2008/03/27/1456/#comment-262669</guid>
		<description>在 index.php 裡面加入set_include_path('./application/models/'.PATH_SEPARATOR. get_include_path() ); 

之後然後再直接用 Zend_Loader::load('CLASS NAME');

我目前是這樣用的</description>
		<content:encoded><![CDATA[<p>在 index.php 裡面加入set_include_path(&#8217;./application/models/&#8217;.PATH_SEPARATOR. get_include_path() ); </p>
<p>之後然後再直接用 Zend_Loader::load(&#8217;CLASS NAME&#8217;);</p>
<p>我目前是這樣用的</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gea-Suan Lin</title>
		<link>http://blog.gslin.org/archives/2008/03/27/1456/#comment-262666</link>
		<dc:creator>Gea-Suan Lin</dc:creator>
		<pubDate>Thu, 27 Mar 2008 05:55:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gslin.org/archives/2008/03/27/1456/#comment-262666</guid>
		<description>ini_set 嗎... :/</description>
		<content:encoded><![CDATA[<p>ini_set 嗎&#8230; :/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ini_set</title>
		<link>http://blog.gslin.org/archives/2008/03/27/1456/#comment-262665</link>
		<dc:creator>ini_set</dc:creator>
		<pubDate>Thu, 27 Mar 2008 05:53:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gslin.org/archives/2008/03/27/1456/#comment-262665</guid>
		<description>看 tutorial 的作法是從 index.php 裡作 ini_set('include_path')</description>
		<content:encoded><![CDATA[<p>看 tutorial 的作法是從 index.php 裡作 ini_set(&#8217;include_path&#8217;)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
