[ create a new paste ] login | about

Link: http://codepad.org/RYo45dBO    [ raw code | output | fork ]

PHP, pasted on Apr 22:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
$a = array(
"who" => "you", 
"what" => "thing", 
"where" => "place",
"when" => "hour"
);
// the haystack array

$b = array(
"when" => "time", 
"where" => "place", 
"who" => "you",
"what" => "thing"
);

$c = count(array_intersect($a, $b));
echo $c;
?>


Output:
1
3


Create a new paste based on this one


Comments: