Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7566265
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T14:22:09+00:00 2026-05-30T14:22:09+00:00

Using an application’s API, I’m able to retrieve data as a JSON and put

  • 0

Using an application’s API, I’m able to retrieve data as a JSON and put it in an array.

$json = file_get_contents($url);
$obj = json_decode($json);
print_r($obj);

When I print the array, I see:

stdClass Object(
    [metadataList] = > stdClass Object(
        [metadata] = > Array(
                [0] = > stdClass Object([metadataName] = > category [metadataValue] = > RECIPES)
                [1] = > stdClass Object([metadataName] = > title [metadataValue] = > Easy Sugar Cookies)
            )
        )
)

I need to set a variable equal to the title metadata value (“Easy Sugar Cookies”), but I’m having some trouble.

Here’s where I am so far, but I’m not having any luck figuring out how to specify the specific metadataValue key, since there is more than one in the array.

$title = array_search('description',($obj->{'metadataList'}->{'metadata'}));
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T14:22:10+00:00Added an answer on May 30, 2026 at 2:22 pm

    I think this is you have want…

    $obj = json_decode($json, true);
    $value = '';
      foreach($obj['metadataList']['metaData'] as $metadata) {
      if($metadata['metadataName'] === 'someName') {
        $value = $metadata['metadataValue'];
        break;
      }
       continue ;
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using application level encryption to protect sensitive data. I need to encrypt the
I am using Application settings to store and retrieve my GUI settings. For one
i am using application context for saving data, and it work fine for me
I am using application builder and setting up select boxes to populate a query
What is the necessity of using Application.DoEvents and when we should use it?
I have an application that I restart at 2 am every morning using Application.Restart();
I'm getting in trouble. I'm trying to emulate the call Application.Run using Application.DoEvents... this
An older application using System.Web.Mail is throwing an exception on emails coming from hr@domain.com
In my application using DataTemplate mechanism I insert into ListBox item another listbox. But
Currently we're using Web Application project, so we have a gain with compilation. But

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.