<?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 iterables function Archives - Codeplaners</title>
	<atom:link href="https://codeplaners.com/tag/php-iterables-function/feed/" rel="self" type="application/rss+xml" />
	<link>https://codeplaners.com/tag/php-iterables-function/</link>
	<description>Code Solution</description>
	<lastBuildDate>Sat, 31 Jul 2021 09:56:40 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>

<image>
	<url>https://codeplaners.com/wp-content/uploads/2020/09/cropped-favicon-social-32x32.png</url>
	<title>PHP iterables function Archives - Codeplaners</title>
	<link>https://codeplaners.com/tag/php-iterables-function/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>PHP Iterables Function Example</title>
		<link>https://codeplaners.com/php-iterables-function-example/</link>
					<comments>https://codeplaners.com/php-iterables-function-example/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 31 Jul 2021 09:56:40 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[PHP iterables function]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1141</guid>

					<description><![CDATA[<p>Hi Dev, Today, i we will show you PHP iterables function example. This article will give you simple example of PHP iterables function example. you will learn PHP iterables function example. So let’s follow few step to create example of PHP iterables function example. output:</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/php-iterables-function-example/">PHP Iterables Function Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi Dev,</p>
<p>Today, i we will show you PHP iterables function example. This article will give you simple example of PHP iterables function example. you will learn PHP iterables function example. So let’s follow few step to create example of PHP iterables function example.</p>
<pre class="brush: php; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;body&gt;

&lt;?php
    function printIterable(iterable $myIterable) {
      foreach($myIterable as $item) {
        echo $item;
      }
    }

    $arr = &#x5B;&quot;a&quot;, &quot;b&quot;, &quot;c&quot;];
    printIterable($arr);
?&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>output:</p>
<pre class="brush: php; title: ; notranslate">
abc
</pre>
<p>The post <a rel="nofollow" href="https://codeplaners.com/php-iterables-function-example/">PHP Iterables Function Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/php-iterables-function-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
