2015-07-03 07:02:16 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Created by PhpStorm.
|
2015-07-04 09:01:56 +02:00
|
|
|
* User: TheMineBench
|
2015-07-03 07:02:16 +02:00
|
|
|
* Date: 7/1/2015
|
|
|
|
* Time: 1:25 PM
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2015-07-04 09:01:56 +02:00
|
|
|
function myfunction($a,$b)
|
2015-07-03 07:02:16 +02:00
|
|
|
{
|
2015-07-04 09:01:56 +02:00
|
|
|
if ($a===$b)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return ($a>$b)?1:-1;
|
2015-07-03 07:02:16 +02:00
|
|
|
}
|
|
|
|
|
2015-07-04 09:01:56 +02:00
|
|
|
$a1=array(new stdClass(),"b"=>"green","c"=>"blue");
|
|
|
|
$a2=array("a"=>"blue","b"=>"black","e"=>"blue");
|
|
|
|
|
|
|
|
$result=array_udiff($a1,$a2,"myfunction");
|
|
|
|
print_r($result);
|