update : 2015.11.03
php.shukuma.com검색:
|
ReflectionProperty::setValue(PHP 5) ReflectionProperty::setValue — Set property value 설명Sets (changes) the property's value. 인수
반환값값을 반환하지 않습니다. 오류/예외Throws a ReflectionException if the property is inaccessible. You can make a protected or private property accessible using ReflectionProperty::setAccessible(). 예제
Example #1 ReflectionProperty::setValue() example
<?php 위 예제의 출력: string(3) "foo" string(3) "bar" string(6) "foobar" 참고
|