PHP Dokumentation: Arrayobject append
12. Januar 2010 von werner
ArrayObject::append
(PHP 5 >= 5.0.0)
ArrayObject::append — Appends the value
Beschreibung
Appends a new value as the last element.
Hinweis: This method cannot be called when the ArrayObject was constructed from an object. Use ArrayObject::offsetset instead.
Parameter-Liste
- value
The value being appended.
Rückgabewerte
Es wird kein Wert zurückgegeben.
Beispiele
Beispiel #1 ArrayObject::append example
<?php
$arrayobj = new ArrayObject(array('first','second','third'));
$arrayobj->append('fourth');
$arrayobj->append(array('five', 'six'));
var_dump($arrayobj);
?>Das oben gezeigte Beispiel erzeugt folgendeAusgabe:
object(ArrayObject)#1 (5) { [0]=> 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" }}Siehe auch
- ArrayObject::offsetset – Sets the value at the specified index to newval