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 5962159
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T19:03:59+00:00 2026-05-22T19:03:59+00:00

I currently have some code which grabs some JSON from a site. This is

  • 0

I currently have some code which grabs some JSON from a site. This is basically what I currently do

$valueObject = array();
if (isset($decoded_json->NewDataSet)) {
             foreach ($decoded_json->NewDataSet->Deeper as $state) {
                 $i = count($valueObject);
                 $valueObject[$i] = new ValueObject();
                 $valueObject[$i]->a = $state->a;
}

Now the problem occurs when there is only one ‘Deeper’. The server returns it as a JSON object. $state then becomes each key in the Deeper object. $state->a won’t exist until around position 7 for example. Is there any way I could convert Deeper from a JSON object to array when the count of deeper is one?

Hopefully this helps illustrate my problem:

"NewDataSet": {
        "Deeper": [
            {
                "a": "112",
                "b": "1841"
            },
            {
                "a": "111",
                "b": "1141"
            }
        ]
    }
}

versus

"NewDataSet": {
        "Deeper":
            {
                "a": "51",
                "b": "12"
            }
}

converting above to

"NewDataSet": {
      "Deeper": [
           {
               "a": "51",
               "b": "12"
           }
       ]
}

would be great. I don’t know how to do this

  • 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-22T19:04:00+00:00Added an answer on May 22, 2026 at 7:04 pm

    Before

    foreach ($decoded_json->NewDataSet->Deeper as $state)

    you probably want to:

    if (is_array($decoded_json->NewDataSet)) {
        // This is when Deeper is a JSON array.
        foreach ($decoded_json->NewDataSet->Deeper as $state) {
            // ...
        }
    } else {
        // This is when Deeper is a JSON object.
    }
    

    Update
    If you just want to make $decoded_json->NewDataSet->Deeper into an array, then:

    if (!is_array($decoded_json->NewDataSet->Deeper)) {
        $decoded_json->NewDataSet->Deeper = array($decoded_json->NewDataSet->Deeper);
    }
    
    foreach ($decoded_json->NewDataSet->Deeper as $state) {
        // ...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I currently have some code which iv used to export a table from the
Some background. Currently have an asp.net web site which is contained on 2 web
I currently have some code which needs to perform multiple updates per user for
I currently have some code that will produce a crash dump when my application
I currently have some code that pulls down a list of users in a
I've been trying to implement unit testing and currently have some code that does
Currently, I have some basic code to play a simple tone whenever a button
I'm tinkering with Silverlight 2.0. I have some images, which I currently have a
I have some code which re-arranges some items on a form, but only one
I have some code which preloads images independent of their extension and acts in

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.