第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

在 Json 響應(yīng)中訪問數(shù)組 在 PHP 中通過 Invision 社區(qū)的 REST API 響應(yīng)

在 Json 響應(yīng)中訪問數(shù)組 在 PHP 中通過 Invision 社區(qū)的 REST API 響應(yīng)

PHP
守著一只汪 2023-08-06 14:50:17
我正在嘗試從 Invision Community REST API 調(diào)用的 Json 響應(yīng)內(nèi)部訪問“結(jié)果”數(shù)組。我不確定如何從 PHP 代碼中過濾到結(jié)果數(shù)組,如下所示。一旦我過濾到它,我想將它回顯到屏幕上,就像當(dāng)前顯示完整響應(yīng)的方式一樣。任何幫助將不勝感激!PHP代碼<?php    $communityUrl = 'https://website.net/invisioncommunity';    $apiKey = 'apikey';    $endpoint = '/core/members';    $curl = curl_init( $communityUrl . 'api' . $endpoint );    curl_setopt_array( $curl, array(        CURLOPT_RETURNTRANSFER  => TRUE,        CURLOPT_HTTPAUTH    => CURLAUTH_BASIC,        CURLOPT_USERPWD     => "{$apiKey}:"    ) );    $response = curl_exec( $curl );    $resArr = array();    $resArr = json_decode($response);        $resultsArr = cleanResponse($response);        echo "<pre>"; print_r($resultsArr); echo "</pre>";        function cleanResponse($arr)    {        $element = $arr['results'];        return $element;    }API 調(diào)用的 Json(部分)響應(yīng){    "page": 1,    "perPage": 25,    "totalResults": 111,    "totalPages": 5,    "results": [        {            "id": 1,            "name": "Demo",            "title": null,            "timeZone": "America\/New_York",            "formattedName": "Demo<\/span>",            "primaryGroup": {                "id": 4,                "name": "Demo",                "formattedName": "Demo<\/span>"            },            "secondaryGroups": [                {                    "id": 15,                    "name": "Root Admin (Do not edit!)",                    "formattedName": "Root Admin (Do not edit!)"                }            ],            "email": "demo@website.net",            "joined": "2020-07-07T19:48:33Z",            "registrationIpAddress": "",            "warningPoints": 0,            "reputationPoints": 6,            "photoUrl": "",            "photoUrlIsDefault": false,            "coverPhotoUrl": "",            "profileUrl": "https:\/\/www.website.net\/profile\/1-demo\/",            "validating": false,            "posts": 3,
查看完整描述

1 回答

?
繁華開滿天機

TA貢獻1816條經(jīng)驗 獲得超4個贊

對代碼進行一些小更改應(yīng)該可以解決您的問題:

  1. 要獲取返回的關(guān)聯(lián)數(shù)組,請用作true第二個參數(shù)json_decode()

$resArr = json_decode($response, true);

  1. 使用關(guān)聯(lián)數(shù)組$resArr作為函數(shù)的參數(shù)cleanResponse

$resultsArr = cleanResponse($resArr);

現(xiàn)在$resultsArr保存results子數(shù)組,您可以使用例如輸出print_r()


查看完整回答
反對 回復(fù) 2023-08-06
  • 1 回答
  • 0 關(guān)注
  • 132 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號