Open In App

PHP | ArrayIterator append() Function

Last Updated : 21 Nov, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The ArrayIterator::append() function is an inbuilt function in PHP which is used to append an element into an array iterator. Syntax:
void ArrayIterator::append( mixed $value )
Parameters: This function accepts single parameter $value that holds the value that need to be append. Return Value: This function does not return any value. Below programs illustrate the ArrayIterator::append() function in PHP: Program 1:
Output:
Geeks123
Program 2:
Output:
a => Geeks
b => for
c => Geeks
0 => Computer
1 => Science
2 => Portal
Reference: https://www.php.net/manual/en/arrayiterator.append.php

Next Article

Similar Reads