<?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>Webmaster-Source &#187; Kohana</title>
	<atom:link href="https://www.webmaster-source.com/tag/kohana/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.webmaster-source.com</link>
	<description>Useful Resources For Webmasters</description>
	<lastBuildDate>Thu, 24 Aug 2017 02:01:18 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.42</generator>
	<item>
		<title>What Are the Advantages of a PHP Framework?</title>
		<link>https://www.webmaster-source.com/2009/09/04/what-are-the-advantages-of-a-php-framework/</link>
		<comments>https://www.webmaster-source.com/2009/09/04/what-are-the-advantages-of-a-php-framework/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 11:40:26 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[Kohana]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=2494</guid>
		<description><![CDATA[CodeIgniter. CakePHP. Kohana. There&#8217;s no shortage of PHP frameworks&#8230;but why should you use one? What are the major advantages? MVC – The Model-View-Controller architectural pattern helps you tier your code for easier maintenance. By keeping the data-manipulating logic separate from the bits that handle the display, you make it much easier to change either the [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="http://codeigniter.com/">CodeIgniter</a>. <a href="http://cakephp.org">CakePHP</a>. <a href="http://kohanaphp.com">Kohana</a>.</p>
<p>There&#8217;s no shortage of PHP frameworks&#8230;but why should you use one? What are the major advantages?</p>
<ul>
<li><strong>MVC</strong> – The Model-View-Controller architectural pattern helps you tier your code for easier maintenance. By keeping the data-manipulating logic separate from the bits that handle the display, you make it much easier to change either the template or the underlying code without touching the other.</li>
<li><strong>Bundled classes</strong> – A framework includes classes and helper functions for common tasks, such as database access, pagination, and form handling. Not to mention smaller things, like truncating text to a specific word/character count.</li>
<li><strong>Rapid development</strong> – Frameworks help you create a small to medium-sized application much quicker than if you wrote everything from scratch. If you&#8217;re in a hurry, using a framework will help you finish things before you reach that looming deadline.</li>
</ul>
<p>If you&#8217;re a total DIY type, you don&#8217;t even need to rely on a third-party PHP framework. You could assemble on yourself, one that&#8217;s more specific to the projects you work on.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2009/09/04/what-are-the-advantages-of-a-php-framework/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kohana: Cleaner CodeIgniter For PHP 5</title>
		<link>https://www.webmaster-source.com/2009/08/21/kohana-cleaner-codeigniter-for-php-5/</link>
		<comments>https://www.webmaster-source.com/2009/08/21/kohana-cleaner-codeigniter-for-php-5/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 11:34:49 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[Kohana]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=2465</guid>
		<description><![CDATA[One of the major criticisms of the CodeIgniter PHP framework is its continued support for PHP 4. The developers of the language announced two years ago that PHP 4 development, security patches included, would cease by the end of 2007. The CodeIgniter project still insists on supporting the outmoded PHP version, because far too many [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-full wp-image-2466" title="Kohana" src="//www.webmaster-source.com/wp-content/uploads/kohana.jpg" alt="Kohana" width="233" height="97" />One of the major criticisms of the <a href="http://codeigniter.com/">CodeIgniter</a> PHP framework is its continued support for PHP 4. The developers of the language announced two years ago that PHP 4 development, security patches included, would cease by the end of 2007. The CodeIgniter project still insists on supporting the outmoded PHP version, because far too many shared hosting providers still haven&#8217;t upgraded their machines for fear of breaking peoples&#8217; poorly-coded scripts.</p>
<p>While CodeIgniter&#8217;s legacy support doesn&#8217;t stop you from using PHP 5-specific features in your applications, it does make things a bit less&#8230;elegant. If you&#8217;re going to build a sports car, would you put an old, less-efficient engine inside it?</p>
<p>Enter <a href="http://kohanaphp.com/">Kohana</a>, &#8220;the swift PHP framework.&#8221;</p>
<p>Kohana is a fork of CodeIgniter, but entirely rewritten to be strict PHP 5 OOP. There are some different conventions, but overall the frameworks are similar enough that migrating is relatively painless. I&#8217;m still reading through the documentation, but it seems like it&#8217;s definitely worth looking into. Some of you may prefer CodeIgniter for their larger community, but it you&#8217;re a developer who has ever been frustrated by CodeIgniter&#8217;s decision, then you definitely want to have a look at Kohana.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2009/08/21/kohana-cleaner-codeigniter-for-php-5/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/


Served from: www.webmaster-source.com @ 2026-06-10 09:32:35 by W3 Total Cache
-->