ArrayObject::append

(PHP 5 >= 5.0.0)

ArrayObject::appendAppends the value

Опис

public void ArrayObject::append ( mixed $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.

Параметри

value

The 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 (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"
  }
}

Прогляньте Також

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top