<?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>PHP Interview Questions and answers&#187; Interview archives  &#8211; interview questions and answers</title>
	<atom:link href="http://www.phpinterviewquestions.com/tag/interview/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpinterviewquestions.com</link>
	<description>Prepare for your next php based interview with high confidence</description>
	<lastBuildDate>Mon, 26 Sep 2011 08:37:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>why cakephp? interview question</title>
		<link>http://www.phpinterviewquestions.com/framework-php-interview-questions/why-cakephp-interview-question/</link>
		<comments>http://www.phpinterviewquestions.com/framework-php-interview-questions/why-cakephp-interview-question/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 06:24:17 +0000</pubDate>
		<dc:creator>Bart</dc:creator>
				<category><![CDATA[Framework questions]]></category>
		<category><![CDATA[cakephp]]></category>
		<category><![CDATA[cakephp interview]]></category>
		<category><![CDATA[Interview]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestions.com/?p=320</guid>
		<description><![CDATA[In an interview the interviewer asked,
Why we use cakephp? We can just have our own structure and keep developing projects without making things more complicated. Why cake?
The best answer for this question from the cakephp Cookbook is,


		

		

		
We don&#8217;t have to re-invent the wheel. Every time we sit for a new project, we have a more [...]]]></description>
			<content:encoded><![CDATA[<p>In an interview the interviewer asked,</p>
<blockquote><p>Why we use cakephp? We can just have our own structure and keep developing projects without making things more complicated. Why cake?</p></blockquote>
<p>The best answer for this question from the cakephp Cookbook is,</p>
<p><script type="text/javascript"><!--

		google_ad_client = "pub-8695027799979044";

		/* 468x15, created 3/2/10 */

		google_ad_slot = "0865002888";

		google_ad_width = 468;

		google_ad_height = 15;

		//-->

		</script>

		<script type="text/javascript"

		src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

		</script></p>
<p>We don&#8217;t have to re-invent the wheel. Every time we sit for a new project, we have a more structural way of developing the project with an already installed development environment and we just have to start our rapid application straight a way with the business logic.</p>
<p>Some of the key features the framework provides are,<br />
- MVC structure<br />
- Code generation<br />
- CRUD for database interaction<br />
- Application scaffolding<br />
- Code generation<br />
- Built-in validation<br />
- Data sanitation<br />
- Flexible casching<br />
- Localization</p>
<p>and lot <a href="http://book.cakephp.org/view/8/What-is-CakePHP-Why-Use-it" target="_blank">more&#8230;&#8230;&#8230;</a></p>
<p><code>Our primary goal is to enable you to work in a structured and rapid mannerâ€“without loss of flexibility</code> &#8211; by cakephp org.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpinterviewquestions.com/framework-php-interview-questions/why-cakephp-interview-question/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Strings and regular expressions</title>
		<link>http://www.phpinterviewquestions.com/php-interview-questions/strings-and-regular-expressions-php-interview-questions/</link>
		<comments>http://www.phpinterviewquestions.com/php-interview-questions/strings-and-regular-expressions-php-interview-questions/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 12:08:03 +0000</pubDate>
		<dc:creator>Bart</dc:creator>
				<category><![CDATA[PHP Questions]]></category>
		<category><![CDATA[Regular level]]></category>
		<category><![CDATA[Interview]]></category>
		<category><![CDATA[Regex]]></category>
		<category><![CDATA[Strings]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestions.com/?p=284</guid>
		<description><![CDATA[What will be the answer of the following code snippet?

echo 'Testing ' . 1 + 2 . '45';

Simply you will give the answer as : Testing 345
But the answer is  : 245
That is because you can not sum a number with a string. The first part, before the plus mark is a string though [...]]]></description>
			<content:encoded><![CDATA[<p>What will be the answer of the following code snippet?</p>
<pre class="brush: php;">
echo 'Testing ' . 1 + 2 . '45';
</pre>
<p>Simply you will give the answer as : Testing 345</p>
<p>But the answer is  : 245</p>
<p>That is because you can not sum a number with a string. The first part, before the plus mark is a string though there is 1 there.<br />
So engine will simply get it as 0 and the latter part as 245. so answer will be 245.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-8695027799979044";
/* 336x280, created 3/4/10 */
google_ad_slot = "4291231574";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpinterviewquestions.com/php-interview-questions/strings-and-regular-expressions-php-interview-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

