json_decode is a PHP function that converts a UTF-8 JSON encoded string into a PHP value.
-4
votes
3answers
38 views
Decode the below JSON using PHP [closed]
{
"a": "here is a",
"b": "here is b",
"c": "here is c",
"d": "here is d",
"e": [
{
"message": "message is here."
}
]
}
Any hints how to reach the 'e' section and see what ...
0
votes
1answer
26 views
Want to use built in PHP JSON decoder but using Services_JSON
I'm requesting packets from a Server that I have no control over and they have no interest in any issues developers might have.
I would love to use the built in json_decode for PHP because of the ...
-2
votes
2answers
35 views
PHP json_decode not working on my json string [closed]
My json string is:
["49630570","49630571"]
I use json_decode in PHP on it and it does not return an array.
Do I need to prefix every value with an indexing number or something?
I used ...
1
vote
4answers
51 views
The correct json format for this? [closed]
{
"categories": [
{
"necklaces": [
{ title: "Outlet", url: "W_Outlet" },
{ title: "Baby-G", url: "W_BabyG" },
{ title: "Bulova", ...
0
votes
0answers
23 views
Parsing Json array in sencha touch 2
How to parse this json [{"message":"Session expired or invalid","errorCode":"INVALID_SESSION_ID"}] in sencha touch 2.
Since this is a json with array, I am not able to parse this using ...
1
vote
3answers
35 views
Getting information out a json sting
I am attempting to work with JSON in PHP and I was wondering if someone could help me out getting me to the $events=>$url when the information is returned from json_decode. What is the variable path. ...
0
votes
1answer
41 views
PHP json_decode not working - displays NULL output
I'm trying to use JSON decode to retrieve some information but it's not working, it's just showing the data as null when I use var_dump
Here's the JSON formatted data passed in the URL
...
0
votes
0answers
29 views
PHP - Receving Http Post request from android(client) with decoding image file
I am working on client-server.
What I send data are name, description and photo.
I encoded image with Base64 and it should be decoded on server side.
On the server DB, I received the encoded image ...
0
votes
5answers
43 views
JSON decode with PHP: Key started with @ sign
JSON is like
{
"@http_status_code": 200,
"@records_count": 200,
"warnings": [],
"query": { ... ...
In PHP
$data = json_decode($json_entry);
print $data->@http_status_code; ...
-1
votes
3answers
33 views
PHP Decoding Array Within Json Object
I am stuck with this Json data:
I have this info in a variable:
$mydata= ...
-1
votes
2answers
39 views
How NOT to double encode a JSON in PHP [closed]
I have an array as such-
$blah = array(
'a' => <huge_json_encoded_string>,
'b' => <another_json_encoded_string>
);
Now, I want:
{'a': ...
0
votes
1answer
41 views
How to generate a pass from 2 different json_encodes
I use this method to generate a pass: public function setJSON($JSON) {
if(json_decode($JSON) !== false) {
$this->JSON = $JSON;
return true;
}
$this->sError = 'This is not ...
-1
votes
0answers
32 views
JSON Decode breaks with inline styles [closed]
I'm currently working on a custom plugin for Wordpress. I have multiple instances of wp_editor in a form to edit items that have multiple descriptions. The code works if the user does not add any ...
0
votes
2answers
23 views
Cannot decode json string by variable
$result = json_decode(file_get_contents('route.json'),true);
// the json file is here: http://myweb.polyu.edu.hk/~11010482d/FSP/route.json
print_r($result);
//it show ...
0
votes
2answers
22 views
yippits api PHP json decode
I am trying to loop through and grab details from this response. The "deals" section obviously repeats for however many results there are. I decode the json response with this
$jsonurl = ...
0
votes
1answer
42 views
Reddit API - Pull Information from Json using foreach()
I am trying to pull the title and url from the Reddit JSON API using PHP's foreach() loop. Here is what the JSON outputs when used in print_r.
Here is the code I have so far...
$string_reddit = ...
0
votes
0answers
34 views
nginx bad gateway during PHP json_decode operation
I deployed Nginx under Ubuntu and during a json_decode operation I get an HTTP error 502 (bad gateway). If I think this error appears during the json_decode operation it's because if I comment the ...
0
votes
1answer
44 views
Instagram API: $value->location->latitude outputs comma separated value, whereas Google Maps accepts dot
$value->location->latitude and $value->location->longitude output respectively something like 41,90693866 and 12,414128943. I have a link which points to
...
0
votes
1answer
51 views
Retrieve JSON value using PHP json_decode
I'm trying to retrieve a value from JSON that's returned from an API, however I can't seem to work out how to get there! Below is what is being returned and how I'm currently trying to access it:
...
0
votes
1answer
41 views
Extracting data from multiple JSON objects
I want to extract the Tweets from sample Twitter data such as http://pastebin.com/AvHnxKpz
I've tried using the PHP function json_decode and then looping through to output the 'text' field but had no ...
0
votes
2answers
52 views
“Illegal string offset” when working with foreach loop
I'm getting the "Warning: Illegal string offset" error when trying to extract data from an array I have converted from JSON.
Now I gather this happens when the index you are using does not exist, ...
0
votes
1answer
105 views
How to implement a json response for sencha touch?
I am implementing a app with a login-screen. and I don't know how i should implement the json response for sencha touch.
this is my login.js
Ext.Ajax.request({
url: ...
-2
votes
0answers
43 views
Unwanted Schema change of Array by json_encode over XML String Object in PHP [closed]
I am unable to figure out the solution of simple problem with json_encode for the following two XML Schemas --
Single Indexed XML -
<?xml version='1.0' encoding='utf-8' standalone='yes'?>
...
0
votes
2answers
53 views
How to create JSON object from php string?
I have a large php string that consists of json style data and need to somehow convert this into a json object. My string looks like something below: (it is one BIG string). Syntax for the string ...
0
votes
1answer
41 views
How jsonValue.isObject() works?
Hell i would like to know how value.isObject()enter code here in below code works.
String jsonString = "{\"key\":\"value\"}";
JSONValue value = JSONParser.parseStrict(jsonString);
JSONObject object ...
2
votes
1answer
188 views
How to read JSON data that is sent from Android, in PHP?
My android emulator is sending a request to PHP script, to access MySQL data. I checked PHP script by giving values to sql query & is able to get it in my Android emulator.But i`m not able to use ...
-2
votes
1answer
46 views
json_decode cant display array [closed]
OK I have looked at few examples and I cant seem to display the array or an element it keeps coming back as null- I have the following JSON (from mapquest)
renderGeocode({
results: [
{
...
0
votes
5answers
50 views
json parsing with php foreach
i was trying to parsing json file below from a link, i still can't figure it out about parsing and display it with foreach.
data: [
{
id: "1072",
nik: "013977",
status: "",
name: "RAKHMAT KUSNADI",
...
0
votes
1answer
27 views
Deserialise a Json object containing a Json String
I have a problem where I am unable to de-serialise a Json string to an object in cases where the object already has a Json string in it.
Ex:
Class A {
int a;
String jsonRpresenationOfSomeObject;
...
0
votes
0answers
122 views
deserialize JSON using Gson in Android App (error: a NullPointer)
IN my android application i'm having Json response from server:
[
{
"sm": [
{
"tbico": "b43-jeep.png",
"t": "Welcome!",
"w": "http://google.com/start",
...
-1
votes
1answer
66 views
Getting specific values from a JSON response [closed]
I have a JSON request but I want specific values from response. How can I get them?
[
{
"JUH": [
[
"12722",
"D NIZAMUDDIN - HYD DECCAN N ...
0
votes
2answers
116 views
Fetch Json values [closed]
The below result I am getting from some URL .
I am in need to fetch some values from the below json response in php
...
-1
votes
1answer
95 views
Reverse hash of hashes in Perl [closed]
I got this output by decoding JSON data.
Now I want to reverse this data structure and print it using Perl.
Can anyone can help me with the code snippet below?
I have this data in one variable and ...
0
votes
2answers
68 views
jquery do not want json_encode
i have the problem that jquery do not want my json.
here is my jquery code:
$.ajax({
type: "POST",
url: "js/resize.php",
data: data,
success: ...
0
votes
3answers
213 views
Saving JSON data to database
Picked up knockout.js and I'm trying to save data to a mysql database using PHP(Laravel framework to be more specific). Here is the ajax:
$.ajax("save", {
data: ko.toJSON(this), // turns the input ...
0
votes
1answer
86 views
how to use JSON.stringify and json_decode() properly
Im trying to pass a mulitidimensional Javascript array to another page on my site by:
using JSON.stringify on the array
assigning the resultant value to an input field
posting that field to the ...
0
votes
1answer
90 views
JSONObject arrayList parsing in php
I am new to JSON. KIndly help me with the JSON parsing in php sent from android.
I have a class A, having members phoneNumber and name. I have an arrayList of object A
private ArrayList<A> ...
0
votes
2answers
57 views
parse json in php not working
{
"data": [
{
"business_type": "bar",
"business_name": "KKK",
"number": "1234567",
"business_id": "test1"
},
{
...
0
votes
4answers
139 views
jQuery cannot deserialize json object properly
I cannot succeed to deserialize JSON object passed from c# code behind. I have been working on this 3 hours and couldn't understand the reason.
Here is my json object creation
struct ...
1
vote
5answers
133 views
jquery how to deserialize json object [duplicate]
How can you deserialize this json object below?
[{"id":"67","name":"TestString"}]
I tried to do this below but couldnt succeed...
success: function (data, status) {
$.each(data, function ...
0
votes
1answer
61 views
Issue with decoding JSON encoded string in PHP
I have a JSON string as given below:
$str = '[{"NR":"000000000010012275","DAT":"2003-04-15","KTX":"PQ 3456"},{"NR":"000000000010012276","DAT":"2003-04-20","KTX":"PQ ...
0
votes
3answers
41 views
Pull specific value from JSON with PHP
I'm trying to pull the price from the following JSON but can't seem to figure out how to reference the actual values:
{"cards": [ { "high": "0.73", "volume": 1, "percent_change": "-2.67", "name": ...
0
votes
0answers
161 views
Decoding json (containig encoded like \u003c HTML entities) with json_decode, unexpected result
Trying to decode this json:
$json = ...
0
votes
2answers
65 views
Unable to see content in a parsed JSON file containing XML as values [duplicate]
I have a JSON file like this:
test.json
{
"barcode": {
"message": "<?xml version=\"1.0\" encoding = \"utf-8?\"><PrintLetterBarcodeData name=\"ABCD \" gender=\"FEMALE\" ...
0
votes
1answer
35 views
2D array returning null with specific value
I'm currently trying to fill a 2D Array with data using json_decode. However, it appears to load right, but when I try to get a specific value it returns null even if it's not.
My 2dtestarray.php:
...
0
votes
1answer
93 views
Add a cache to json_decode Twitter API
I'm trying to add a cache machanism to json_decode fetching Twitter API. The important part is the one regarding $cache and the if below it.
<?php
function buildBaseString($baseURI, $method, ...
1
vote
2answers
22 views
access an array within a group of other objects and array
I am using the freebase API. When I get the result from the curl operation I decode the json to PHP. Now I am trying to access the text attributed. its buried deeply within this set of objects and ...
0
votes
0answers
125 views
paypal access oauth login json_decode returned null
i have 2 PHP files, one index.php and the other one paypal.php.
The code for paypal.php is:
<?php
session_start();
$client_id = 'xxxxxxxxxxxx';
$client_secret = ...
0
votes
2answers
44 views
usort() not processing correctly
My array from a json result is returned as follows :
["AuctionInfo"]=>
[0]=>
array(13) {
["price"]=>
int(3000)
}
[1]=>
array(13) {
["price"]=>
int(5000)
My PHP code ...
0
votes
1answer
319 views
jquery to decode json
i have problem with decode JSON data. actually i want slickgrid work to save in mysql.
so, i read [question]:Saving Changes in SlickGrid with php but don't know how to decode the data.
here is my ...







