ArrayObject::append
Appends the value
&reftitle.description;
public voidArrayObject::append
mixedvalue
Appends a new value as the last element.
This method cannot be called when the ArrayObject
was constructed from an object.
Use ArrayObject::offsetSet instead.
&reftitle.parameters;
value
The value being appended.
&reftitle.returnvalues;
&return.void;
&reftitle.examples;
ArrayObject::append example
append('fourth');
$arrayobj->append(array('five', 'six'));
var_dump($arrayobj);
?>
]]>
&example.outputs;
string(5) "first"
[1]=>
string(6) "second"
[2]=>
string(5) "third"
[3]=>
string(6) "fourth"
[4]=>
array(2) {
[0]=>
string(4) "five"
[1]=>
string(3) "six"
}
}
]]>
&reftitle.seealso;
ArrayObject::offsetSet