PHP array_diff

array_diff() function compares arrays and returns all the elements in the 1st array but not in the 2nd array.
   array array_diff(array array 1, array array 2 [, array ...])

<?PHP
	$arr1=array(1,2,3,4,5,6,7,8,9);
	$arr2=array(2,4,6,8);
	$arr3=array_diff($arr1,$arr2);
	foreach($arr3 as $element) echo "$element, "; //1, 3, 5, 7, 9,
?>

It can also take a 3rd array parameter. It returns all the elements in the 1st array but not in the 2nd and 3rd array.

<?PHP
	$arr1=array(1,2,3,4,5,6,7,8,9);
	$arr2=array(2,4,6,8);
	$arr3=array(1,3);
	$arr=array_diff($arr1,$arr2,arr3);
	foreach($arr as $element) echo "$element, "; //5, 7, 9, 
?>

Similarly, more arrays can be taken, all elements in the 1st array as well as in the other arrays will be deleted.

<?PHP
	$arr1=array(1,2,3,4,5,6,7,8,9);
	$arr2=array(2,4,6,8);
	$arr=array_diff($arr1,$arr2,array(1,3),array(5));
	foreach($arr as $element) echo "$element, "; //7, 9, 
?>

It can also take associative arrays, both the keys and values will be compared.

<?PHP
	$arr1=array("apple"=>2.2,"rice"=>0.5,"nuts"=>4.99,"meat"=>6.99);
	$arr2=array("apple"=>1.2,"rice"=>0.5,"orange"=>1.99);
	$arr = array_diff($arr1,$arr2);
	print_r($arr);

    //the result is:
	Array
	(
		[apple] => 2.2
		[nuts] => 4.99
		[meat] => 6.99
	)
?>

array_diff_key() function compares only array keys and returns all the elements in the 1st array but not in the following arrays.

<?PHP
	$arr1=array("apple"=>2.2,"rice"=>0.5,"nuts"=>4.99,"meat"=>6.99);
	$arr2=array("apple"=>1.2,"rice"=>0.5,"orange"=>1.99);
	$arr = array_diff_key($arr1,$arr2);
	print_r($arr);

    //the result is:
	Array
	(
		[nuts] => 4.99
		[meat] => 6.99
	)
?>

array_intersect() function returns the shared elements of the 1st array and other arrays.

<?PHP
	$arr1=array(1,2,3,4,5,6,7,8,9);
	$arr2=array(2,4,6,8);
	$arr3=array_intersect($arr1,$arr2);
	foreach($arr3 as $element) echo "$element, "; //2, 4, 6, 8,
?>




:: PHP Tutorials Home ::
PHP String Functions
 • concatenation • echo
 • ereg • ereg_replace
 • explode • htmlspecialchars
 • preg_match • preg_replace
 • preg_split • print,sprintf
 • regular expr. • str_replace
 • strcmp • strpos
 • strrev • strrpos
 • strtr • substr
 • substr_replace
PHP Array Functions
 • array_diff • array_flip
 • array_intersect • array_key_exists
 • array_keys • array_merge
 • array_pop • array_push
 • array_rand • array_search
 • array_splice • array_unshift
 • array_values • asort & arsort
 • count • in_array
 • ksort • shuffle
 • sort
PHP Data Types
 • array • associative array
 • date & time • number
 • class, object • regular expression
 • string • variables
PHP Loop & Conditions
 • continue & break • for loop
 • foreach • if else
 • not equal • while
PHP File System Functions
 • copy • delete, unlink
 • dirname • download url
 • file_exists • is_file
 • mkdir • read file
 • scandir • write file
PHP Popular Topics
 • ajax • clone
 • comments • constants
 • cookie • database
 • defined • die
 • form validation • gd, draw images
 • global variables • header url
 • heredoc • mail
 • pass by reference • print
 • regular expr. • sessions
 • threads • xml parse
PHP Math Functions
 • abs • cos
 • exp • floor & ceil
 • fmod • log
 • max & min • pow
 • round • sin
 • sqrt • tan
endmemo.com © 2024  | Terms of Use | Privacy | Home