Syntax :
void append ($value)
Parameters : This function takes one parameter
$value representing the value to add.
Return value : This function does not return any value.The following programs illustrate the above function:
Program 1 :
// PHP function for illustration
// append() method
$arrObj
=
new
ArrayObject (
array
(
’ Geeks’
,
’ for’
,
’Geeks’
));
$arrObj
-> append (
’ welcomes you’
);
var_dump (
$arrObj
);
?>
Exit:object (ArrayObject ) # 1 (1) {["storage": "ArrayObject": private] = > array (4) {[0] = > string (5) "Geeks" [1] = > string (3) "for" [2] = > string (5) "Geeks" [3] = > string (12) "welcomes you"}}
Program 2 :
// PHP function for illustration
// append() method
$arrObj
=
new
ArrayObject (
array
(
’Geeks’
,
’for’
,
’ Geeks’
));
// Add an array
$arrObj
-> append (
array
(
’ welcomes’
,
’you’
));
var_dump (
$arrObj
);
?>
Exit:object (ArrayObject ) # 1 (1) {["storage": "ArrayObject": private] = > array (4) {[0] = > string (5) "Geeks" [1] = > string (3) "for" [2] = > string (5) "Geeks" [3] = > array (2) {[0] = > string (8) "welcomes" [1] = > string (3) "you"}}}
Link : http://php.net/manual/en/arrayobject.append.php