반업주부의 일상 배움사
[PHP] ["response":protected] 사용하기 본문
반응형
아래와 같이 결과가 나온다면.
object(NeverBounce\Object\VerificationObject)#4 (1) {
["response":protected]=>
array(9) {
["status"]=>
string(7) "success"
["result"]=>
string(7) "invalid"
...
아래와 같이 변환하세요.
$reflector = new \ReflectionClass($result);
$classProperty = $reflector->getProperty('response');
$classProperty->setAccessible(true);
$data = $classProperty->getValue($result);
영어, 중국어 공부중이신가요?
홈스쿨 교재. 한 권으로 가족 모두 할 수 있어요!
반응형
LIST
'IT 인터넷 > PHP' 카테고리의 다른 글
[PHP] VSCode에서 더블 클릭으로 변수명 $까지 선택하기 (0) | 2021.04.19 |
---|---|
[PHP] Codeigniter 에 GraphQL 적용하기 (0) | 2020.10.15 |
[PHP] POST로 다른 URL 호출하기 (0) | 2020.09.17 |
[PHP] node-fetch 에서 보낸 POST 데이터 읽기 (0) | 2020.07.29 |
PHP에서 자바 .jar 파일 실행하기 (0) | 2020.06.18 |
Comments