downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

ArrayObject::asort> <ArrayObject
Last updated: Fri, 20 Nov 2009

view this page in

ArrayObject::append

(PHP 5 >= 5.1.0)

ArrayObject::appendAppends the value

Descrierea

void ArrayObject::append ( mixed $value )

Appends a new value as the last element.

Notă: This method cannot be called when the ArrayObject was constructed from an object. Use ArrayObject::offsetset instead.

Parametri

value

The value being appended.

Valorile întroarse

Nu este întoarsă nici o valoare.

Exemple

Example #1 ArrayObject::append example

<?php
$arrayobj 
= new ArrayObject(array('first','second','third'));
$arrayobj->append('fourth');
$arrayobj->append(array('five''six'));
var_dump($arrayobj);
?>

Exemplul de mai sus va afişa:

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

Vedeţi de asemenea



add a note add a note User Contributed Notes
ArrayObject::append
c dot 1 at smithies dot org
25-Nov-2009 05:56
This member function is implemented as follows:

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

ArrayObject::asort> <ArrayObject
Last updated: Fri, 20 Nov 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites