|
|
|
ต้องการให้แสดงเฉพาะข้อมูลที่ซ้ำกัน ระหว่าง text file 2 ไฟล์ อ่ะคะ ต้องเขียนโค้ด php ยังไงคะ |
|
|
|
|
|
|
|
ตัวอย่างข้างบน คือข้อมูลที่ "ไม่ซ้ำกัน" (มีอยู่ในเซ็ตใดเซ็ตหนึ่ง)
แต่ถ้าต้องการข้อมูลที่ซ้ำกัน (คือมีอยู่ในทั้งสองเซ็ต)
ใช้ array_intersect() ครับ
Code (PHP)
<?php
$array1 = array("a" => "green", "red", "blue", "red");
$array2 = array("b" => "green", "yellow", "red");
$result = array_intersect($array1, $array2);
print_r($result);
?>
|
|
|
|
|
Date :
2012-03-09 04:26:07 |
By :
actioncookie |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2012-03-09 06:08:33 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|