PHP Doku:: Appends the value - arrayobject.append.html

Verlauf / Chronik / History: (5) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenStandard PHP Library (SPL)Verschiedene Klassen und InterfacesThe ArrayObject classArrayObject::append

Ein Service von Reinhard Neidl - Webprogrammierung.

The ArrayObject class

<<The ArrayObject class

ArrayObject::asort>>

ArrayObject::append

(PHP 5 >= 5.0.0)

ArrayObject::appendAppends the value

Beschreibung

void ArrayObject::append ( mixed $value )

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 folgende Ausgabe:

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


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
c dot 1 at smithies dot org
25.11.2009 18:56
This member function is implemented as follows:

<?php
class ArrayObject /* .... */ {
 
// ...
 
public function append($v) {
    return
$this->offsetSet(NULL, $v);
  }
 
// ...
}
?>



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)