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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T11:31:44+00:00 2026-05-13T11:31:44+00:00

All, I have the following JSON Data. I need help writing a function in

  • 0

All,

I have the following JSON Data. I need help writing a function in PHP which takes a categoryid and returns all URLs belonging to it in an array.

Something like this::

<?php
function returnCategoryURLs(catId)
{
    //Parse the JSON data here..
    return URLArray;
}
?>


{
    "jsondata": [
        {
            "categoryid": [
                20 
            ],
            "url": "www.google.com" 
        },
        {
            "categoryid": [
                20 
            ],
            "url": "www.yahoo.com" 
        },
        {
            "categoryid": [
                30 
            ],
            "url": "www.cnn.com" 
        },
        {
            "categoryid": [
                30 
            ],
            "url": "www.time.com" 
        },
        {
            "categoryid": [
                5,
                6,
                30 
            ],
            "url": "www.microsoft.com" 
        },
        {
            "categoryid": [
                30 
            ],
            "url": "www.freshmeat.com" 
        } 
    ]
}

Thanks

  • 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-13T11:31:44+00:00Added an answer on May 13, 2026 at 11:31 am

    What about something like this :

    You first use json_decode, which is php’s built-in function to decode JSON data :

    $json = '{
        ...
    }';
    $data = json_decode($json);
    

    Here, you can seen what PHP kind of data (i.e. objects, arrays, …) the decoding of the JSON string gave you, using, for example :

    var_dump($data);
    

    And, then, you loop over the data items, searching in each element’s categoryid if the $catId you are searching for is in the list — in_array helps doing that :

    $catId = 30;
    $urls = array();
    foreach ($data->jsondata as $d) {
        if (in_array($catId, $d->categoryid)) {
            $urls[] = $d->url;
        }
    }
    

    And, each time you find a match, add the url to an array…

    Which means that, at the end of the loop, you have the list of URLs :

    var_dump($urls);
    

    Gives you, in this example :

    array
      0 => string 'www.cnn.com' (length=11)
      1 => string 'www.time.com' (length=12)
      2 => string 'www.microsoft.com' (length=17)
      3 => string 'www.freshmeat.com' (length=17)
    

    Up to you to build from this — there shouldn’t be much left to do 😉

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

Sidebar

Ask A Question

Stats

  • Questions 502k
  • Answers 502k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Have you tried kqueue(2) on OSX and epoll(7) on Linux?… May 16, 2026 at 2:33 pm
  • Editorial Team
    Editorial Team added an answer If I recall correctly, the triangles you have to draw… May 16, 2026 at 2:33 pm
  • Editorial Team
    Editorial Team added an answer It may be problem with postgre updation i think. If… May 16, 2026 at 2:33 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I have created a library which can download JSON data which is then placed
I have a problem returning data back to the function I want it returned
In writing a django app, I am returning the following json on a jQuery
If I have the following: {hdrs: [Make,Model,Year], data : [ {Make:Honda,Model:Accord,Year:2008} {Make:Toyota,Model:Corolla,Year:2008} {Make:Honda,Model:Pilot,Year:2008}] }
Evening all I have the following scenarion. I have a range of drop down
I've got the following tables: magazine_tags news_tags page_tags content_tags faq_tags They all have exactly
PLATFORM: jQuery, PHP, mySQL WHAT I HAVE: I am using jQuery to process information
I have a jquery datepicker which is renders the current date by default as
I am having a lot of trouble binding my Json data to a JqGrid.
I must receive the following JSON: { method:methodName1, args:{ arg1Name:arg1Value, arg2Name:arg2Value } } Here's

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.