Posted inphp / Ajax / JavaScript / jQuery / Laravel / Programming / Technology

Convert and Loop through JSON with PHP and JavaScript Arrays/Objects | json to array php

Today, We want to share with you json to array php.In this post we will show you json_decode to array php, hear for php parse json array we will give you demo and example for implement.In this post, we will learn about how to get data from json array in php with an example.

If you’re working with client side JSON (JavaScript Object Notation) as well as either required to easy convert a JSON string to array or object as well as loop through it or vice-versa, take an array or object as well as convert it to a JSON string to return, both can be done in PHP sever side or client side JavaScript or jQuery Parsing PHP JSON Data.

json to array php Examples

PHP Converting an array to JSON Tutorial With Example
PHP Converting an array to JSON Tutorial With Example

I learn to this post into main 3 part:

  • Using with PHP
  • Using with JavaScript
  • Using with both PHP and JavaScript

Convert JSON String to PHP Array or Object

PHP >= 5.2.0 some features a function available, like as a json_decode, that decodes a JSON data string into a PHP variable. By native it data returns an object. The second arguments accepts a boolean value like as a true or false that when set as true, tells it to return the objects as associative arrays. You can learn more about the php json_decode function from PHP’s offiecal documentation.

name; // Retrieves Object data
?>

Loop through PHP Array or Object

Loop through a PHP array or object with a foreach loop.

 $value) {
    echo $value["name"] . ", " . $value["player_type"] . "
"; } // Loop through Object $someObject = ...; // Replace ... with your PHP Object foreach($someObject as $key => $value) { echo $value->name . ", " . $value->player_type . "
"; } ?>

Note the differences in Retrieving the values of an array vs an object.

Convert PHP Array or Object to JSON String

PHP also features a json_encode function to convert an array or object into a string. Read more about the json_encode function from PHP’s documentation.

 "Virat Kohli",
      "player_type" => "batsmen"
    ],
    [
      "name"   => "Dhoonee Sharmas",
      "player_type" => "batsmen"
    ],
    [
      "name"   => "Rohitsir Sharma  ",
      "player_type" => "bowlers"
    ]
  ];

  // Convert Array to JSON String
  $fetchPlayerJson = json_encode($dream11Arr);
  echo $fetchPlayerJson;
?>

Note that I’m using the short array syntax that’s featured in PHP 5.4+.

 "bar",
    "bar" => "foo"
  );

  // as of PHP 5.4
  $array = [
    "foo" => "bar",
    "bar" => "foo"
  ];
?>

Convert JSON String to JavaScript Object

JavaScript has a built-in JSON.parse() method that parses a JSON string and returns an object.


JSON.parse() is very well-supported, but there are browsers that do not support it (i.e. <= IE 7. More information at pakainfo.com). jQuery 1.x has a $.parseJSON() method that should fill in the gaps for those browsers if you are needing to support them. You can also use the JSON-js library as a polyfill.


Loop through JavaScript Object

You can then loop through a JavaScript object using a for in loop.


Convert JavaScript Object to JSON String

JavaScript has a JSON.stringify method to convert a value into a JSON string.


Like JSON.parse, JSON.stringify is not supported in dinosaur browsers like <= IE 7. You can use the JSON-js library to polyfill JSON.stringify as well.


You can merge the great ways above to make a powerful, easy, dynamic step by step implementations on your website or single page web application.

Let’s say you want to fetch all the details from a database, safely very fast and light weight data return the data as JSON, and loop through it dynamically, you can do therefor with a bit of PHP server side and client side JavaScript with jquery Ajax.

Dynamically Get JSON via Ajax and Loop Through JSON

Let’s assume your mysql database structure looks like the following simple data:

Table: cricketer
┌────┬────────────────────┬─────────┐
| id | name               | type  	|
├────┼────────────────────┼─────────┤
| 0  | Virat KohliS       | batsmen |
| 1  | Dhoonee Sharmas    | batsmen |
| 2  | Rohitsir Sharma    | bowlers |
| 3  | Yuvaraj shinhs     | bowlers |
| 4  | Virendra Shevangs  | bowlers |
└────┴────────────────────┴─────────┘

And you want to jquery ajax with PHP dynamically get a list of cricketer from the database based on player_type, like this:

Let’s start bellow source code with the front-end file step by step make a simple index.html that’ll have a simple select dropdown HTML Forms with player_types to select from, a cricketer table to display the results, and the script to handle the jquery Ajax. The JavaScript is written in jQuery.
index.html



player Name player type

Now let’s last step to make a player_results.php file to handle the back-end logic of getting the details from the database as well as returning the results as a JSON data string.

 $row['name'],
      'player_type' => $row['player_type']
    ]);
  }

  // PHP Convert the Array to a JSON String and echo it
  $fetchPlayerJson = json_encode($dream11Arr);
  echo $fetchPlayerJson;
?>

To fetch a more in-depth as well as very useful example of simply step by step PHP-JSON-JavaScript/jQuery-Ajax interaction, also you can read my new articles for jQuery Ajax Call to PHP Script with JSON Return post.

I hope you get an idea about json to array php.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

I am Jaydeep Gondaliya , a software engineer, the founder and the person running Pakainfo. I'm a full-stack developer, entrepreneur and owner of Pakainfo.com. I live in India and I love to write tutorials and tips that can help to other artisan, a Passionate Blogger, who love to share the informative content on PHP, JavaScript, jQuery, Laravel, CodeIgniter, VueJS, AngularJS and Bootstrap from the early stage.

Leave a Reply

Your email address will not be published. Required fields are marked *

We accept paid guest Posting on our Site : Guest Post Chat with Us On Skype