<?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>Aratide &#187; array</title>
	<atom:link href="http://www.aratide.com/tag/array/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aratide.com</link>
	<description>programming and software tutorials</description>
	<lastBuildDate>Sat, 20 Feb 2010 08:40:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Adding an element to the beginning of an array in PHP</title>
		<link>http://www.aratide.com/php/adding-an-element-to-the-beginning-of-an-array-in-php/</link>
		<comments>http://www.aratide.com/php/adding-an-element-to-the-beginning-of-an-array-in-php/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 04:06:57 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[add element]]></category>
		<category><![CDATA[array]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=244</guid>
		<description><![CDATA[// Create an array $a = new array&#40;&#34;apple&#34;, &#34;orange&#34;&#41;; &#160; // Prepend an element to the array array_unshift&#40;$a, &#34;raspberry&#34;&#41;; &#160; // Prepend a couple more elements to the array array_unshift&#40;$a, &#34;pineapple&#34;, &#34;watermelon&#34;&#41;;]]></description>
		<wfw:commentRss>http://www.aratide.com/php/adding-an-element-to-the-beginning-of-an-array-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding an element to the end of an array in PHP</title>
		<link>http://www.aratide.com/php/adding-an-element-to-the-end-of-an-array-in-php/</link>
		<comments>http://www.aratide.com/php/adding-an-element-to-the-end-of-an-array-in-php/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 03:47:37 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[add element]]></category>
		<category><![CDATA[array]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=241</guid>
		<description><![CDATA[There are two ways to add an element to the end of an array. // Create an array $a = new array&#40;&#34;apple&#34;, &#34;orange&#34;&#41;; &#160; // Add an element to the end of the array using the array_push() function array_push&#40;$a, &#34;banana&#34;&#41; &#160; // Alternative way of adding an element to the end of an array $a&#91;&#93;]]></description>
		<wfw:commentRss>http://www.aratide.com/php/adding-an-element-to-the-end-of-an-array-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove elements from an array in PHP</title>
		<link>http://www.aratide.com/php/how-to-remove-elements-from-an-array-in-php/</link>
		<comments>http://www.aratide.com/php/how-to-remove-elements-from-an-array-in-php/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 03:26:47 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[remove element]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=237</guid>
		<description><![CDATA[// Create an array $a = new array&#40;&#34;orange&#34;, &#34;apple&#34;, &#34;pineapple&#34;&#41;; &#160; // Remove the apple from the middle of the array unset&#40;$a&#91;1&#93;&#41;; &#160; // Create an associative array $a = new array&#40;&#34;dogs&#34; =&#62; 4, &#34;cats&#34; =&#62; 9, &#34;birds&#34; =&#62;2&#41;; &#160; // Remove the birds from the array unset&#40;$a&#91;'birds'&#93;&#41;;]]></description>
		<wfw:commentRss>http://www.aratide.com/php/how-to-remove-elements-from-an-array-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
