<?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 Tutorials Code Snippets and Php Tips &#187; php split words</title>
	<atom:link href="http://readytousesolutions.com/phpblog/tag/php-split-words/feed/" rel="self" type="application/rss+xml" />
	<link>http://readytousesolutions.com/phpblog</link>
	<description>PHP tutorials - Examples of the most useful scripts</description>
	<lastBuildDate>Thu, 23 Sep 2010 06:54:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>PHP Tutorial : Explode function to split words</title>
		<link>http://readytousesolutions.com/phpblog/php-tutorial-explode-function-to-split-words/</link>
		<comments>http://readytousesolutions.com/phpblog/php-tutorial-explode-function-to-split-words/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 13:34:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Basic PHP]]></category>
		<category><![CDATA[explode]]></category>
		<category><![CDATA[php explode]]></category>
		<category><![CDATA[php split]]></category>
		<category><![CDATA[php split words]]></category>
		<category><![CDATA[split]]></category>
		<category><![CDATA[split words]]></category>

		<guid isPermaLink="false">http://www.crivionweb.com/phpblog/?p=107</guid>
		<description><![CDATA[Have you faced with a situation where you needed to split some words ? For that exists explode() php function. Look how it works : &#60;?php $words = "some words needed to split"; $wordsarray = explode(" ", $words); print_r($wordsarray); ?&#62;]]></description>
			<content:encoded><![CDATA[<p>Have you faced with a situation where you needed to split some words ? For that exists explode() php function. Look how it works :</p>
<pre class="php">
<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span>
$words <span class="phpOperator">=</span> <span class="phpString">"some words needed to split"</span><span class="phpText">;</span>
$wordsarray <span class="phpOperator">=</span> <span class="phpFunction">explode</span><span class="phpOperator">(</span><span class="phpString">" "</span>, $words<span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpFunction">print_r</span><span class="phpOperator">(</span>$wordsarray<span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://readytousesolutions.com/phpblog/php-tutorial-explode-function-to-split-words/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

