<?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>Comments on: 缺乏 Model 支援的 Zend Framework</title> <atom:link href="http://blog.gslin.org/archives/2008/03/27/1456/%e7%bc%ba%e4%b9%8f-model-%e6%94%af%e6%8f%b4%e7%9a%84-zend-framework/feed/" rel="self" type="application/rss+xml" /><link>http://blog.gslin.org/archives/2008/03/27/1456/%e7%bc%ba%e4%b9%8f-model-%e6%94%af%e6%8f%b4%e7%9a%84-zend-framework/</link> <description>幹壞事是進步最大的原動力</description> <lastBuildDate>Sun, 12 Feb 2012 04:26:00 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>By: Gea-Suan Lin</title><link>http://blog.gslin.org/archives/2008/03/27/1456/%e7%bc%ba%e4%b9%8f-model-%e6%94%af%e6%8f%b4%e7%9a%84-zend-framework/comment-page-1/#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/%e7%bc%ba%e4%b9%8f-model-%e6%94%af%e6%8f%b4%e7%9a%84-zend-framework/comment-page-1/#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/%e7%bc%ba%e4%b9%8f-model-%e6%94%af%e6%8f%b4%e7%9a%84-zend-framework/comment-page-1/#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/%e7%bc%ba%e4%b9%8f-model-%e6%94%af%e6%8f%b4%e7%9a%84-zend-framework/comment-page-1/#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 &#039;Zend/Loader.php&#039;;
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/%e7%bc%ba%e4%b9%8f-model-%e6%94%af%e6%8f%b4%e7%9a%84-zend-framework/comment-page-1/#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/%e7%bc%ba%e4%b9%8f-model-%e6%94%af%e6%8f%b4%e7%9a%84-zend-framework/comment-page-1/#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(&#039;./application/models/&#039;.PATH_SEPARATOR. get_include_path() );之後然後再直接用 Zend_Loader::load(&#039;CLASS NAME&#039;);我目前是這樣用的</description> <content:encoded><![CDATA[<p>在 index.php 裡面加入set_include_path(&#8216;./application/models/&#8217;.PATH_SEPARATOR. get_include_path() );</p><p>之後然後再直接用 Zend_Loader::load(&#8216;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/%e7%bc%ba%e4%b9%8f-model-%e6%94%af%e6%8f%b4%e7%9a%84-zend-framework/comment-page-1/#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/%e7%bc%ba%e4%b9%8f-model-%e6%94%af%e6%8f%b4%e7%9a%84-zend-framework/comment-page-1/#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(&#039;include_path&#039;)</description> <content:encoded><![CDATA[<p>看 tutorial 的作法是從 index.php 裡作 ini_set(&#8216;include_path&#8217;)</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: blog.gslin.org @ 2012-02-12 19:38:09 -->
