Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to correctly get a value from a JSON PHP?
To get a value from JSON, use json_decode(). Let’s say the following is our JSON
$detailsJsonObject = '{"details":[{"name":"John","subjectDetails":{"subjectId":"101","subjectName":"PHP","marks":"58", "teacherName":"Bob"}}]}';
We need to fetch specific values i.e. Subject Name, Marks, etc.
Example
The PHP code is as follows
<!DOCTYPE html>
<html>
<body>
<?php
$detailsJsonObject = '{"details":[
{"name":"John","subjectDetails":
{"subjectId":"101","subjectName":"PHP","marks":"58",
"teacherName":"Bob"}
}]}';
$convertToArrayObject = json_decode($detailsJsonObject,true);
$actualSubjectName = $convertToArrayObject[details][0][subjectDetails][subjectName];
$actualTeacherName = $convertToArrayObject[details][0][subjectDetails][teacherName];
echo "The Subject Name is=",$actualSubjectName,"<br>";
echo "The Teacher Name is=",$actualTeacherName;
?>
</body>
</html>
Output
This will produce the following output
The Subject Name is=PHP The Teacher Name is=Bob
Advertisements