This member function is implemented as follows:
<?php
class ArrayObject /* .... */ {
// ...
public function append($v) {
return $this->offsetSet(NULL, $v);
}
// ...
}
?>
(PHP 5, PHP 7, PHP 8)
ArrayObject::append — 値を追加する
新しい値を最後の要素として追加します。
注意:
このメソッドは、ArrayObject をオブジェクトから作成した場合にはコールできません。 かわりに ArrayObject::offsetSet() を使用します。
value
追加する値。
値を返しません。
例1 ArrayObject::append() の例
<?php
$arrayobj = new ArrayObject(array('first','second','third'));
$arrayobj->append('fourth');
$arrayobj->append(array('five', 'six'));
var_dump($arrayobj);
?>
上の例の出力は以下となります。
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" } }
This member function is implemented as follows:
<?php
class ArrayObject /* .... */ {
// ...
public function append($v) {
return $this->offsetSet(NULL, $v);
}
// ...
}
?>