file get contents again not working alternative

前端 未结 2 493
北海茫月
北海茫月 2021-01-26 14:18

I tried the curl as the filegetcontents now working in php can any one give me the solution so solve it using curl here is the code

$userData = json_decode(file_         


        
2条回答
  •  孤城傲影
    2021-01-26 14:39

    Try this:

    $json = json_decode(file_get_contents('https://graph.facebook.com/me?access_token='.$token.'&fields=name,id'),true);
    $json_output = json_decode($json, true);
    

    Now you can get specific item like this:

    echo $json_output['id'];  
    

提交回复
热议问题