<?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>Gökalp Kuşçu &#187; array_combine($array1</title>
	<atom:link href="http://www.gokalpkuscu.com/tag/array_combinearray1/feed" rel="self" type="application/rss+xml" />
	<link>http://www.gokalpkuscu.com</link>
	<description>Mezun olduuuuu :)</description>
	<lastBuildDate>Mon, 21 Jun 2010 23:09:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Adding two array &#8211; different array</title>
		<link>http://www.gokalpkuscu.com/adding-two-array-different-array</link>
		<comments>http://www.gokalpkuscu.com/adding-two-array-different-array#comments</comments>
		<pubDate>Sat, 26 Sep 2009 20:03:40 +0000</pubDate>
		<dc:creator>Gökalp Kuşçu</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[$array2)]]></category>
		<category><![CDATA[adding two array]]></category>
		<category><![CDATA[array_combine($array1]]></category>
		<category><![CDATA[array_combine()]]></category>

		<guid isPermaLink="false">http://www.gokalpkuscu.com/?p=284</guid>
		<description><![CDATA[Hi, we have a array , and other array. We want to combine it, for example array(1,2,3,4) &#8211; the other array array(a,b,c,d). we want that 1 show -> a , 2 ->b etc&#8230; Look! we can combine it ! < ?php $array1=array(1,4,5,6); $array2=array(A,K,M,P); $array3= array_combine($array1,$array2); //array3 will be $array3= array( [1]=>A, [4]=>K, [5]=>M, [6]=>P, ) [...]]]></description>
			<content:encoded><![CDATA[<p>Hi, we have a array , and other array. We want to combine it, for example  array(1,2,3,4) &#8211; the other array array(a,b,c,d). we want that 1 show -> a , 2 ->b etc&#8230;</p>
<p>Look! we can combine it ! </p>
<p><span id="more-284"></span></p>
<pre class="brush:php">

< ?php

  $array1=array(1,4,5,6);
  $array2=array(A,K,M,P);
  $array3= array_combine($array1,$array2); 

//array3 will be
 $array3=
   array(
     [1]=>A,
     [4]=>K,
     [5]=>M,
     [6]=>P,
   )

?>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.gokalpkuscu.com/adding-two-array-different-array/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
