<?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>Blog.hio.fr &#187; php</title>
	<atom:link href="http://blog.hio.fr/category/dev/php/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.hio.fr</link>
	<description></description>
	<lastBuildDate>Wed, 25 Jan 2012 10:04:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>PHP iterative constructs</title>
		<link>http://blog.hio.fr/2011/12/20/php-iterative-constructs.html</link>
		<comments>http://blog.hio.fr/2011/12/20/php-iterative-constructs.html#comments</comments>
		<pubDate>Tue, 20 Dec 2011 20:19:17 +0000</pubDate>
		<dc:creator>HiO</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[constructs]]></category>
		<category><![CDATA[iterative]]></category>

		<guid isPermaLink="false">http://blog.hio.fr/?p=936</guid>
		<description><![CDATA[while $i = 0; while&#40;$i &#60; 10&#41; &#123; echo $i.PHP_EOL; // 0 1 ...... 8 9 $i++; &#125; &#160; $i = 10; do &#123; echo $i.PHP_EOL; // 10 because in a do while loop the code will be executed a &#8230; <a href="http://blog.hio.fr/2011/12/20/php-iterative-constructs.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.hio.fr/2011/12/20/php-iterative-constructs.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP conditionals structures</title>
		<link>http://blog.hio.fr/2011/12/18/php-conditionals-structures.html</link>
		<comments>http://blog.hio.fr/2011/12/18/php-conditionals-structures.html#comments</comments>
		<pubDate>Sun, 18 Dec 2011 15:40:11 +0000</pubDate>
		<dc:creator>HiO</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[conditionals]]></category>
		<category><![CDATA[structure]]></category>

		<guid isPermaLink="false">http://blog.hio.fr/?p=909</guid>
		<description><![CDATA[if elseif else $var1 = true; $var2 = false; $var3 = 'php'; &#160; if&#40;$var1&#41; &#123; $a = 1; &#125; elseif&#40;!$var2&#41; &#123; $a = 2; &#125; else &#123; $a = 3; &#125; echo $a; // 1 &#160; if&#40;$var1&#41; &#123; if&#40;$var2&#41; &#123; &#8230; <a href="http://blog.hio.fr/2011/12/18/php-conditionals-structures.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.hio.fr/2011/12/18/php-conditionals-structures.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP logical operators</title>
		<link>http://blog.hio.fr/2011/12/17/php-logical-operators.html</link>
		<comments>http://blog.hio.fr/2011/12/17/php-logical-operators.html#comments</comments>
		<pubDate>Sat, 17 Dec 2011 21:20:12 +0000</pubDate>
		<dc:creator>HiO</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[logical]]></category>
		<category><![CDATA[operators]]></category>

		<guid isPermaLink="false">http://blog.hio.fr/?p=891</guid>
		<description><![CDATA[$var1 = true; $var2 = false; $var3 = 'php'; &#160; echo $var1; // true echo !$var1; // false echo $var2; // false echo !$var2; // true &#160; if&#40;$var1 &#38;&#38; $var2&#41; $a = 'ok'; else $a = 'ko'; &#160; echo $a; &#8230; <a href="http://blog.hio.fr/2011/12/17/php-logical-operators.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.hio.fr/2011/12/17/php-logical-operators.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP comparaison operators</title>
		<link>http://blog.hio.fr/2011/12/16/php-comparaison-operators.html</link>
		<comments>http://blog.hio.fr/2011/12/16/php-comparaison-operators.html#comments</comments>
		<pubDate>Fri, 16 Dec 2011 21:33:55 +0000</pubDate>
		<dc:creator>HiO</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[comparaison]]></category>
		<category><![CDATA[operators]]></category>

		<guid isPermaLink="false">http://blog.hio.fr/?p=882</guid>
		<description><![CDATA[$var1 = '24'; // $var1 contains string 24 $var2 = 24; // $var2 contains integer 24 &#160; if&#40;$var1 == $var2&#41; // check if $var1 value is equal to $var2 value $a = 'equal'; else $a = 'different'; echo $a; // &#8230; <a href="http://blog.hio.fr/2011/12/16/php-comparaison-operators.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.hio.fr/2011/12/16/php-comparaison-operators.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP assignement operators</title>
		<link>http://blog.hio.fr/2011/12/16/php-assignement-operators.html</link>
		<comments>http://blog.hio.fr/2011/12/16/php-assignement-operators.html#comments</comments>
		<pubDate>Fri, 16 Dec 2011 21:07:03 +0000</pubDate>
		<dc:creator>HiO</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[assignement]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[operators]]></category>

		<guid isPermaLink="false">http://blog.hio.fr/?p=879</guid>
		<description><![CDATA[$var = 'value'; // $var contains string value $var = 1; // $var contains integer 1 $var = '1'; // $var contains string 1 $var = true; // $var contains boolean true $var = 'true'; // $var contains string true &#8230; <a href="http://blog.hio.fr/2011/12/16/php-assignement-operators.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.hio.fr/2011/12/16/php-assignement-operators.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP bitwise operators</title>
		<link>http://blog.hio.fr/2011/12/16/php-bitwise-operators.html</link>
		<comments>http://blog.hio.fr/2011/12/16/php-bitwise-operators.html#comments</comments>
		<pubDate>Fri, 16 Dec 2011 20:48:29 +0000</pubDate>
		<dc:creator>HiO</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[bitwise]]></category>
		<category><![CDATA[operators]]></category>

		<guid isPermaLink="false">http://blog.hio.fr/?p=868</guid>
		<description><![CDATA[$i = 0; echo ~$i; // -1 &#160; $i = 1; echo ~$i; // 0 &#160; $i = 24; echo $i &#60;&#60; 1; // 24x2 = 48 echo $i &#60;&#60; 2; // 24x2x2 = 96 echo $i &#62;&#62; 1; // &#8230; <a href="http://blog.hio.fr/2011/12/16/php-bitwise-operators.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.hio.fr/2011/12/16/php-bitwise-operators.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP concatenation</title>
		<link>http://blog.hio.fr/2011/12/15/php-concatenation.html</link>
		<comments>http://blog.hio.fr/2011/12/15/php-concatenation.html#comments</comments>
		<pubDate>Thu, 15 Dec 2011 22:11:37 +0000</pubDate>
		<dc:creator>HiO</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[concatenation]]></category>
		<category><![CDATA[string]]></category>

		<guid isPermaLink="false">http://blog.hio.fr/?p=849</guid>
		<description><![CDATA[$str_1 = 'mais'; $str_2 = 'blu'; echo $str_1.$str_2; // maisblu $str = 'mais'; echo $str.' blu'; // mais blu]]></description>
		<wfw:commentRss>http://blog.hio.fr/2011/12/15/php-concatenation.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP operators</title>
		<link>http://blog.hio.fr/2011/12/15/php-operators.html</link>
		<comments>http://blog.hio.fr/2011/12/15/php-operators.html#comments</comments>
		<pubDate>Thu, 15 Dec 2011 21:57:46 +0000</pubDate>
		<dc:creator>HiO</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[operators]]></category>

		<guid isPermaLink="false">http://blog.hio.fr/?p=840</guid>
		<description><![CDATA[&#60;?php $i = 1; echo $i++; // 1 &#160; $i = 1; echo ++$i; // 2 &#160; $i = 'php'; echo ++$i; // phq &#160; $i = &#40;string&#41;'php'; $i = &#40;integer&#41;$i; // string to integer = 0 echo ++$i; // &#8230; <a href="http://blog.hio.fr/2011/12/15/php-operators.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.hio.fr/2011/12/15/php-operators.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP variable</title>
		<link>http://blog.hio.fr/2011/12/15/php-variable.html</link>
		<comments>http://blog.hio.fr/2011/12/15/php-variable.html#comments</comments>
		<pubDate>Thu, 15 Dec 2011 21:45:36 +0000</pubDate>
		<dc:creator>HiO</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[variable]]></category>

		<guid isPermaLink="false">http://blog.hio.fr/?p=828</guid>
		<description><![CDATA[$var = 'good'; $_var = 'good'; $1var = 'bad'; $_1var = 'good'; $var= 'mais'; $$var = 'blu'; echo $mais; // blu]]></description>
		<wfw:commentRss>http://blog.hio.fr/2011/12/15/php-variable.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP boolean</title>
		<link>http://blog.hio.fr/2011/12/15/php-boolean.html</link>
		<comments>http://blog.hio.fr/2011/12/15/php-boolean.html#comments</comments>
		<pubDate>Thu, 15 Dec 2011 21:42:02 +0000</pubDate>
		<dc:creator>HiO</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[boolean]]></category>

		<guid isPermaLink="false">http://blog.hio.fr/?p=825</guid>
		<description><![CDATA[boolean false =&#62; false boolean true =&#62; true integer 0 =&#62; false integer 1 =&#62; true string 0000 =&#62; true string 1111 =&#62; true integer 0 =&#62; false integer 1111 =&#62; true double 0.1 =&#62; true double 1.1 =&#62; true &#8230; <a href="http://blog.hio.fr/2011/12/15/php-boolean.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.hio.fr/2011/12/15/php-boolean.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

