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

  • SEARCH
  • Home
  • 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 7691465
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T20:37:50+00:00 2026-05-31T20:37:50+00:00

I have been working on a json decode issue (which I have already had

  • 0

I have been working on a json decode issue (which I have already had assistance with thanks very much – PHP json_decode brings back null ).
but I find I have another problem getting the assoc array brought back by the json decode to work properly. Am I doing something wrong or is it the array?? Here is my code

<?php
$jsonurl='http://www.foxsports.com.au/internal-syndication/json/livescoreboard';
$json = file_get_contents($jsonurl,0,null,null);

$json = str_replace("jQuery.fs['scoreboard'].data =","",$json); /*
replace starting comment*/

$json =strip_tags($json); /* takes out html tags  & comments*/


$json_output = json_decode($json,true); 

switch(json_last_error()) {
    case JSON_ERROR_DEPTH:
        echo ' - Maximum stack depth exceeded';
    break;
    case JSON_ERROR_CTRL_CHAR:
        echo ' - Unexpected control character found';
    break;
    case JSON_ERROR_SYNTAX:
        echo ' - Syntax error, malformed JSON';
    break;
    case JSON_ERROR_NONE:
      //  echo ' - No errors';
    break; }


function crttbl($test){ echo "</br></br>";

echo "<table border='1'>";
    foreach($test as $key=>$row) {
        echo "<tr>";
        foreach($row as $key2=>$row2){
            echo "<td>". $key2.": " .$row2 . "</td>";
        }
        echo "</tr>";
    } echo "</table>";

echo "</br></br>"; }



//print_r (array_keys($json_output)); $test=$json_output["response"];
print_r(array_keys($test)); crttbl($test);

echo var_dump($test);

$test=$test['container-1']; print_r(array_keys($test)); crttbl($test);

echo var_dump($test);

$test=$test['group-content-1']; print_r(array_keys($test));
crttbl($test);
  • 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-31T20:37:51+00:00Added an answer on May 31, 2026 at 8:37 pm

    If this is the output you are after
    http://cl.ly/0t2a2y3r2k2Q0B2x1o2h

    Then try this:

    function createTable(&$node, &$output, $key = NULL, $indent = 0) {
        if ($indent > 0) {
            $output .= "<tr>\n";
            $output .= "<td><strong>". $key."</strong></td>";
        } else {
            $output .= '<tr><td>Top Level</td>';
        }
        if (is_object($node) || is_array($node)) {
            $node = (array)$node;
            $output .= "</tr>\n";
            $count = 0;
            foreach ($node as $k=>$v) {
                createTable($node[$k], $output, $k, $indent + 1);
            }
        } else {
            $output .= "<td>".($node === TRUE ? 1 : $node === FALSE ? 0 : $node) ."</td>";
            $output .= "</tr>\n";
        }
    }
    
    function outputTable($object) {
        echo "<table border='1'>";
                $output = "";
                createTable($object, $output); 
                echo $output; 
        echo "</table>";
    }
    
    outputTable($json_output);
    

    The problem with your original code is that your object is nested more than two levels, so when you do foreach($row as $key2=>$row2) {, $row2 is actually an Array and you simply get the word Array in your output.

    Since you can’t be 100% sure (at least I don’t think you can) of the number of levels deep the response might be, you are best off using a recursive-ish function like I provided.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been working on a JQuery script that posts JSON to my asp.net
I have been working with a small project recently which involves Struts 2 and
In the primary application on which I have been working, and with which Stack
Hi all i am trying to setup a json feed. i have been working
I have been working on a web services related project for about the last
I have been working with Visual Studio (WinForm and ASP.NET applications using mostly C#)
I have been working with a string[] array in C# that gets returned from
We have been working with CVS for years, and frequently find it useful to
I have been working on some legacy C++ code that uses variable length structures
I have been working with relational databases for sometime, but it only recently occurred

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.