Hi All, how are you doing? Stucked?
Haa. Today i'm going to share with you how to easily parse a PHP array to Javascript array!
Let's say we have a php array with key pair values defined.
Example
We want to change it to javascript object. first we will need to parse the array to json format
Then we can use in javascript, either tru api or directly
Same goes if we have an array of objects in PHP example
Then we parse to json
And access it in Javascript
Hope this helps! Please leave some comment so that i can help it out~
Haa. Today i'm going to share with you how to easily parse a PHP array to Javascript array!
Let's say we have a php array with key pair values defined.
Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$developer = array("name"=>"alia", "job"=>"freelancer", "age"=>"30"); |
We want to change it to javascript object. first we will need to parse the array to json format
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$parsed_array_to_json = json_decode($developer); |
Then we can use in javascript, either tru api or directly
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//javascript | |
var developer = <?php echo $parsed_array_to_json; ?>; | |
//access the value. | |
console.log(developer.name, developer.age, developer.job); |
Same goes if we have an array of objects in PHP example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$developers = array( | |
array("name"=>"alia", "job"=>"freelancer", "age"=>"30"), | |
array("name"=>"naruto", "job"=>"freelancer hokage", "age"=>"30"), | |
array("name"=>"sasuke", "job"=>"freelancer spy", "age"=>"30") | |
); |
Then we parse to json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$parsed_array_to_json = json_decode($developers); |
And access it in Javascript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//javascript | |
var developers = <?php echo $parsed_array_to_json; ?>; | |
//access the value. | |
developers.forEach(logData); | |
function logData(value, index, array) { | |
console.log(value.name, value.age, value.job); | |
} |
Comments
Post a Comment