duanlian1978 2018-09-18 15:48
浏览 583
已采纳

php - 如何从数组对象中获取值

I use php code and I have a problem with getting value of an array object. When I use var_dump($arr), I get this (the code below is formatted for better readability):

object(League\OAuth2\Client\Provider\GoogleUser)#5 (1) {
    ["response":protected]=> array(5) {
        ["emails"]=> array(1) {
            [0]=> array(1) {
                ["value"]=> string(21) "thienlam129@gmail.com"
            }
        }
        ["id"]=> string(21) "115281634466837725533"
        ["displayName"]=> string(18) "thiên lâm trần"
        ["name"]=> array(2) {
            ["familyName"]=> string(6) "trần"
            ["givenName"]=> string(11) "thiên lâm"
        }
        ["image"]=> array(1) {
            ["url"]=> string(98) "https://lh3.googleusercontent.com/-SpWfKGTcQt8/AAAAAAAAAAI/AAAAAAAAAB8/IlGQQnvy7so/photo.jpg?sz=50"
        }
    }
}

Please, tell me how to get emails value.

  • 写回答

2条回答 默认 最新

  • dongmu3187 2018-09-18 18:56
    关注

    You could cast the object as an array as such:

    var_dump((array) $object);
    

    Or

    $array = (array) $object;
    

    And access all its properties but you might have to array walk and filter the name of the class out.

    But this is a hack and an example of bad practise. Accessing protected properties by its methods is the way to go or else request json object instead, if possible.

    Naturally, you would say

    $object = (object) $inputObject;
    $value = (string) $object->getValue();
    

    Or

    $value = (array) $object->getArray();
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog