array_replace()
replaces the values of
array
with values having the same keys in each of the following arrays. If a key from the first array exists in the second array, its value will be replaced by the value from the second array. If the key exists in the second array, and not the first, it will be created in the first array. If a key only exists in the first array, it will be left as is. If several arrays are passed for replacement, they will be processed in order, the later arrays overwriting the previous values.
array_replace()
is not recursive : it will replace values in the first array by whatever type is in the second array.
Parameters
array
The array in which elements are replaced.
replacements
Arrays from which elements will be extracted. Values from later arrays overwrite the previous values.
array_replace_recursive()
replaces the values of
array
with the same values from all the following arrays. If a key from the first array exists in the second array, its value will be replaced by the value from the second array. If the key exists in the second array, and not the first, it will be created in the first array. If a key only exists in the first array, it will be left as is. If several arrays are passed for replacement, they will be processed in order, the later array overwriting the previous values.
array_replace_recursive()
is recursive : it will recurse into arrays and apply the same process to the inner value.
When the value in the first array is scalar, it will be replaced by the value in the second array, may it be scalar or array. When the value in the first array and the second array are both arrays,
array_replace_recursive()
will replace their respective value recursively.
If
needle
is a string, the comparison is done in a case-sensitive manner.
haystack
The array.
strict
If the third parameter
strict
is set to
true
then the
array_search()
function will search for
identical
elements in the
haystack
. This means it will also perform a strict type comparison of the
needle
in the
haystack
, and objects must be the same instance.
Return Values
Returns the key for
needle
if it is found in the array,
false
otherwise.
If
needle
is found in
haystack
more than once, the first matching key is returned. To return the keys for all matching values, use
array_keys()
with the optional
search_value
parameter instead.
Warning
This function may return Boolean
false
, but may also return a non-Boolean value which evaluates to
false
. Please read the section on Booleans for more information. Use the === operator for testing the return value of this function.
array_shift
—
Shift an element off the beginning of array
Description
array_shift(array&$array):mixed
array_shift()
shifts the first value of the
array
off and returns it, shortening the
array
by one element and moving everything down. All numerical array keys will be modified to start counting from zero while literal keys won't be affected.
Note
:
This function will
reset()
the
array
pointer of the input array after use.
Parameters
array
The input array.
Return Values
Returns the shifted value, or
null
if
array
is empty or is not an array.
array_slice()
returns the sequence of elements from the array
array
as specified by the
offset
and
length
parameters.
Parameters
array
The input array.
offset
If
offset
is non-negative, the sequence will start at that offset in the
array
.
If
offset
is negative, the sequence will start that far from the end of the
array
.
Note
:
The
offset
parameter denotes the position in the array, not the key.
length
If
length
is given and is positive, then the sequence will have up to that many elements in it.
If the array is shorter than the
length
, then only the available array elements will be present.
If
length
is given and is negative then the sequence will stop that many elements from the end of the array.
If it is omitted, then the sequence will have everything from
offset
up until the end of the
array
.
preserve_keys
Note
:
array_slice()
will reorder and reset the integer array indices by default. This behaviour can be changed by setting
preserve_keys
to
true
. String keys are always preserved, regardless of this parameter.
Return Values
Returns the slice. If the offset is larger than the size of the array, an empty array is returned.
Examples
Example #1
array_slice()
examples
<?php$input=array("a","b","c","d","e");$output=array_slice($input,2);// returns "c", "d", and "e"$output=array_slice($input,-2,1);// returns "d"$output=array_slice($input,0,3);// returns "a", "b", and "c"// note the differences in the array keysprint_r(array_slice($input,2,-1));print_r(array_slice($input,2,-1,true));?>
The above example will output:
Array
(
[0] => c
[1] => d
)
Array
(
[2] => c
[3] => d
)