array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'arrayobject.append.php', 1 => 'ArrayObject::append', 2 => 'Appends the value', ), 'up' => array ( 0 => 'class.arrayobject.php', 1 => 'ArrayObject', ), 'prev' => array ( 0 => 'class.arrayobject.php', 1 => 'ArrayObject', ), 'next' => array ( 0 => 'arrayobject.asort.php', 1 => 'ArrayObject::asort', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/spl/arrayobject/append.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 5, PHP 7, PHP 8)
ArrayObject::append — Appends the value
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.
valueThe value being appended.
Не повертає значень.
Приклад #1 ArrayObject::append() example
<?php
$arrayobj = new ArrayObject(array('first','second','third'));
$arrayobj->append('fourth');
$arrayobj->append(array('five', 'six'));
var_dump($arrayobj);
?>Поданий вище приклад виведе:
object(ArrayObject)#1 (1) {
["storage":"ArrayObject":private]=>
array(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"
}
}
}