|
![](/images/resource/spacer.gif) |
|
เช็ค array ซ้ำกันจาก 2 อาเรย์ยังไงหรอครับ ถ้ามีซ้ำกันก็ให้เอาออก 1 ตัวอ่ะครับ |
|
![](/images/resource/viewboard_01.gif?v=1001) |
|
|
![](/images/resource/viewboard_03.gif?v=1001) |
![](/images/resource/viewboard_04.gif?v=1001) |
|
$input = array(
'array1' => 'one', 'two', 'three', 'four', 'five' ,
'array2' => 'five', 'six', 'seven'
);
$result = array_unique($input);
print_r($result);
ไม่รู้ว่าตรงกับความต้องการมั้ยนะครับ
|
ประวัติการแก้ไข 2015-10-06 15:29:07
![](/images/resource/blockviewtopic_01.gif?v=1001) |
![](/images/resource/blockviewtopic_02.gif?v=1001) |
![](/images/resource/blockviewtopic_03.gif?v=1001) |
![](/images/resource/blockviewtopic_04.gif?v=1001) |
Date :
2015-10-06 15:21:39 |
By :
seattlesonic |
|
![](/images/resource/blockviewtopic_06.gif?v=1001) |
![](/images/resource/blockviewtopic_07.gif?v=1001) |
![](/images/resource/blockviewtopic_08.gif?v=1001) |
![](/images/resource/blockviewtopic_09.gif?v=1001) |
|
|
![](/images/resource/viewboard_06.gif?v=1001) |
![](/images/resource/viewboard_07.gif?v=1001) |
|
![](/images/resource/viewboard_08.jpg?v=1001) |
![](/images/resource/viewboard_09.gif?v=1001) |
![](/images/resource/viewboard_01.gif?v=1001) |
|
|
![](/images/resource/viewboard_03.gif?v=1001) |
![](/images/resource/viewboard_04.gif?v=1001) |
|
Code (PHP)
<?php
$x=array( 1, 2, 3);
$y=array( 3,4,5,6);
$z = array_merge($x,$y);
$u=array_unique($z);
$d = array_diff($y, $x);
echo '<pre>';
print_r( array( 'x'=>$x, 'y'=>$y, 'merge'=>$z, 'unique'=>$u, 'diff_Y-x'=>$d ));
echo '</pre>';
|
![](/images/resource/blockviewtopic_01.gif?v=1001) |
![](/images/resource/blockviewtopic_02.gif?v=1001) |
![](/images/resource/blockviewtopic_03.gif?v=1001) |
![](/images/resource/blockviewtopic_04.gif?v=1001) |
Date :
2015-10-06 18:22:11 |
By :
NewbiePHP |
|
![](/images/resource/blockviewtopic_06.gif?v=1001) |
![](/images/resource/blockviewtopic_07.gif?v=1001) |
![](/images/resource/blockviewtopic_08.gif?v=1001) |
![](/images/resource/blockviewtopic_09.gif?v=1001) |
|
|
![](/images/resource/viewboard_06.gif?v=1001) |
![](/images/resource/viewboard_07.gif?v=1001) |
|
![](/images/resource/viewboard_08.jpg?v=1001) |
![](/images/resource/viewboard_09.gif?v=1001) |
|
|
|
![](/images/digitalocean-banner.jpg)
|
Load balance : Server 00
|