Tag Archives: Array

array

It can be used to create an array

Example

<?php
echo “<pre>”;
$array = array(‘PHP’,’ ASP’, ‘JS’,’AS’);
print_r($array);
?>

Output

Array
(
[0] => PHP
[1] =>  ASP
[2] => JS
[3] => AS
)

array_walk

It apply a user function to every member of an array

Example

<?php
function func($value,$key){
echo “The key $key has the value $value<br />”;
}
$arr1=array(“p”=>”php”,”a”=>”ASP”);
array_walk($arr1,”func”);
?>

Output

The key p has the value php
The key a has the value ASP

array_walk_recursive

It applay a user function recursively to every member of an array

Example

<?php
function func($value,$key){
echo “The key $key has the value $value<br />”;
}
$arr1=array(“p”=>”php”,”a”=>”ASP”);
$arr2=array($arr1,”1″=>”JS”,”2″=>”VS”);
array_walk_recursive($arr2,”func”);
?>

Output

The key p has the value php
The key a has the value ASP
The key 1 has the value JS
The key 2 has the value VS

array_unshift

It prepend one or more elements to the beginning of an array

Example

<?php
echo “<pre>”;
$array = array(“PHP”, “ASP”);
($array, “JS”, “AS”);
print_r($array);
?>

Output

Array
(
[0] => JS
[1] => AS
[2] => PHP
[3] => ASP
)

array_unique

It removes duplicate values from an array
Example

<?php
echo “<pre>”;
$array1 = array(“a” => “PHP”, “PHP”, “b” => “ASP”, “ASP”, “JSP”);
print_r(array_unique($array1));
?>

Output

Array
(
[a] => PHP
[b] => ASP
[2] => JSP
)

array_uintersect

It finds  the intersection of arrays, compares data by a callback function

Example

<?php
echo “<pre>”;
$array1 = array(“a” => “php”, “b” => “asp”, “c” => “AS”, “JS”);
$array2 = array(“a” => “PHP”, “B” => “asp”, “AS”, “JS”);
print_r(array_uintersect($array1, $array2, “strcasecmp”));
?>

Output

Array
(
[a] => php
[b] => asp
[c] => AS
[0] => JS
)

array_uintersect_uassoc

It finds  the intersection of arrays with additional index check, compares data and indexes by a callback functions

Example

<?php
echo “<pre>”;
$array1 = array(“a” => “php”, “b” => “asp”, “c” => “AS”, “JS”);
$array2 = array(“a” => “PHP”, “B” => “asp”, “AS”, “JS”);
print_r(array_uintersect_uassoc($array1, $array2, “strcasecmp”, “strcasecmp”));
?>

Output

Array
(
[a] => php
[b] => asp
)

array_uintersect_assoc

It finds the intersection of arrays with additional index check, compares data by a callback function

Example

<?php
function func1($arg1,$arg2)
{
if ($arg1===$arg2)
{
return 0;
}
return 1;
}
echo “<pre>”;
$array1=array(“a”=>”PHP”,”b”=>”JSP”,”c”=>”AS”);
$array2=array(a=>”PHP”,b=>”ASP”,c=>”JS”);
print_r(array_uintersect_assoc($array1,$array2,”func1″));
?>

Output

Array
(
[a] => PHP
)

array_udiff

It finds the difference of arrays by using a callback function for data comparison

Example

<?php
function func1($v1,$v2)
{
if ($v1===$v2)
{
return 0;
}
return 1;
}
echo “<pre>”;
$array1=array(“a”=>”PHP”,”b”=>”JSP”,”c”=>”AS”);
$array2=array(1=>”PHP”,2=>”ASP”,3=>”JS”);
print_r(array_udiff($array1,$array2,”func1″));
?>

Output

Array
(
[b] => JSP
[c] => AS
)