|
update : 2015.11.03
php.shukuma.com검색:
|
ArrayObject::offsetSet(PHP 5 >= 5.0.0) ArrayObject::offsetSet — Sets the value at the specified index to newval 설명Sets the value at the specified index to newval. 인수
반환값값을 반환하지 않습니다. 예제
Example #1 ArrayObject::offsetSet() example
<?php위 예제의 출력:
object(ArrayObject)#1 (3) {
["property"]=>
string(11) "prop:public"
[4]=>
string(4) "four"
["group"]=>
array(2) {
[0]=>
string(2) "g1"
[1]=>
string(2) "g2"
}
}
object(ArrayObject)#3 (3) {
[0]=>
string(4) "zero"
[1]=>
string(3) "one"
[2]=>
string(4) "last"
}
|