|
update : 2015.11.03
php.shukuma.com검색:
|
ArrayObject::append(PHP 5 >= 5.0.0) ArrayObject::append — Appends the value 설명Appends a new value as the last element.
인수
반환값값을 반환하지 않습니다. 예제
Example #1 ArrayObject::append() example
<?php위 예제의 출력:
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"
}
}
|