Tagged Questions
json_decode is a PHP function that converts a UTF-8 JSON encoded string into a PHP value.
9
votes
5answers
250 views
JSON object conversion question
I am converting from JSON to object and from object to array. It does not what I expected, can you explain to me?
$json = '{"0" : "a"}';
$obj = json_decode($json);
$a = (array) $obj;
print_r($a);
...
7
votes
3answers
3k views
[PHP]: json_encode/json_decode - returns stdClass instead of Array
Observe this little script:
$array = array('stuff' => 'things');
print_r($array);
//prints - Array ( [stuff] => things )
$arrayEncoded = json_encode($array);
echo $arrayEncoded . "<br ...
7
votes
4answers
2k views
Python JSON decoding performance
I'm using the json module in Python 2.6 to load and decode JSON files. However I'm currently getting slower than expected performance. I'm using a test case which is 6MB in size and json.loads() is ...
7
votes
10answers
13k views
json_decode returns NULL (php)
There is a strange behaviour with json_encode and json_decode and I can't find a solution:
My php application calls a php web service. The webservice returns json that looks like this:
...
6
votes
4answers
169 views
PHP JSON decode: array with '$' problem
I have the following JSON file as input,
{
"$type": "NanoWebInterpreter.WebInputData, NanoWebInterpreter",
"NBBList": {
"$type": "System.Collections.Generic.List`1[[monoTNP.Common.NBB, ...
6
votes
2answers
333 views
Object Mapping library from JSON to NSObjects
I am trying to build a parser/objectMapper that will build Objective C objects for the JSON I consume from a REST service.
I took some inspiration from RestKit by having my Entities all hold a ...
6
votes
2answers
3k views
LINQ and JSON.NET when the property names vary
I am attempting to parse some JSON content in to C#. For the simpler cases I am having great success with JSON.NET and really appreciate the clean approach offered by the LINQ provider. Here's an ...
5
votes
2answers
820 views
Problem using json in Golang (Go)
I am using json to store data on disk between program calls, the program runs fine for some time, but after that it displays error in json decoding, "invalid character '1' after top-level value ".
...
5
votes
2answers
3k views
Detect bad json data in PHP json_decode()?
I'm trying handle bad json data when parsed through json_decode(). I'm using the following script:
if(!json_decode($_POST)) {
echo "bad json data!";
exit;
}
If $_POST equals:
'{ bar: "baz" }'
...
5
votes
3answers
4k views
How does jQuery deserialize JSON?
I am using jQuery.ajax(...) to retrieve JSON data from an ASP.NET MVC service. When the server encounters an exception, I send a 400 Bad Request status back to the client and send my exception as a ...
5
votes
3answers
2k views
What puts less load on a PHP server: SimpleXML or json_decode?
I'm starting to develop a web application in PHP that I hope will become incredibly popular and make me famous and rich. :-)
If that time comes, my decision whether to parse the API's data as XML ...
5
votes
4answers
1k views
Anyone have issues going from ColdFusion's serializeJSON method to PHP's json_decode?
The Interwebs are no help on this one. We're encoding data in ColdFusion using serializeJSON and trying to decode it in PHP using json_decode. Most of the time, this is working fine, but in some ...
4
votes
1answer
64 views
make order in json decode
[
{
"id": "123",
"name": "aaa"
},
{
"id": "567",
"name": "bbb"
},
{
"id": "469",
...
4
votes
2answers
681 views
decoding the JSON output from Microsoft translator API with PHP
this issue seems specific to microsofttranslator.com so please ... any answers, if you can test against it ...
Using the following URL for translation: ...
4
votes
1answer
184 views
JSON Serialization in C
What is the best way to generate UTF-8 JSON in C? I've looked at Jansson, but it seems extremely bulky. Is there any other good low-dependency library for creating and reading JSON objects/strings in ...
4
votes
2answers
3k views
How to decode a JSON String with several objects in PHP?
I know how to decode a JSON string with one object with your help from this example http://stackoverflow.com/questions/2543389/how-to-decode-a-json-string
But now I would like to improve decoding ...
4
votes
3answers
6k views
Decode sparse json array to php array
I can create a sparse php array (or map) using the command:
$myarray = array(10=>'hi','test20'=>'howdy');
I want to serialize/deserialize this as JSON. I can serialize it using the command:
...
4
votes
2answers
1k views
In PHP, why is json_encode way slower than serialize?
I don't get it, the data produced by json_encode is much more straightforward than serialize and yet both the JSON encode and decode functions are much more slower than the serialize and unserialize ...
4
votes
4answers
8k views
json decode in php
I have the following json string and I want to retrieve just the email address from it. How do I do it in php?
...
3
votes
4answers
47 views
Why json_decode doesn't work for me?
I'm a little confused here. if I pass a variable to json_decode, it doesn't work:
$stringJSON = $_GET['jsonstring'];
echo $stringJSON;
$stringObject = json_decode($stringJSON);
...
3
votes
3answers
121 views
Human Readable JSON: aka Add spaces and breaks to json dump
Is there a "simple" script somewhere that will take a json data and format it to make it more readable?
For example:
// $response is a json encoded string.
var_dump($response);
The above outputs ...
3
votes
2answers
98 views
PHP - json_decode security
Is PHP's json_decode() secure as opposed to eval()? The eval() function can runs the code, but does json_decode() do that as well?
Thanks,
Rik
3
votes
4answers
276 views
Json to xml with greek characters
I am using curl to get a json file which can be located here: (It's way too long to copy paste it): ...
3
votes
2answers
540 views
PHP json_decode not working properly
I am trying to use PHP's json_decode function to get a particular value from a json object.
Sample code below:
foreach ($streams as &$i) {
$chan = ...
3
votes
2answers
528 views
How can I pass textarea data via ajax that contains ampersands and/or linebreaks?
I have a textarea in a form that I'm trying to send via ajax with jQuery. My problem is when the textarea contains linebreaks and ampersand (&).
I get the value of the textarea with the following ...
3
votes
3answers
1k views
Fatal error: Maximum execution time of 30 seconds exceeded
I am downloading a JSON file from an online source and and when it runs through the loop I am getting this error:
Fatal error: Maximum execution time of
30 seconds exceeded in
...
3
votes
2answers
403 views
Memory exhausted error for json_parse with PHP
I have the following code:
<?php
$FILE="giant-data-barf.txt";
$fp = fopen($FILE,'r');
//read everything into data
$data = fread($fp, filesize($FILE));
fclose($fp);
$data_arr = ...
3
votes
1answer
983 views
Using Jackson to deserialize JSON objects to POJOs
I'm trying to use Jackson in an Android project via the ObjectMapper.
My POJO is as follows:
public class Product {
@JsonProperty("title")
String title;
@JsonProperty("vendor")
...
3
votes
2answers
350 views
Is there a simple way to fetch a JSON dataset from a remote server in Grails?
Is there a simple way to fetch a JSON dataset from a remote server in Grails?
e.g. data at http://example.com/data.json
Data:
{
"firstName": "John",
"lastName": "Smith"
}
example Groovy ...
3
votes
5answers
815 views
3
votes
2answers
494 views
Odd behavior of json_decode()
Take the following JSON string (generated by some ExtJS code - but that's irrelevant):
...
3
votes
5answers
5k views
Decode JSON data in Java
I'm used to PHP, and decoding json data is just a line of code.
What would be the easiest way to do this in java?
3
votes
3answers
882 views
PHP json_decode on a 32bit server
im writting a twitter mashup service. When i receive the json data, some of the twit ids are greater than 2147483647 (which is the maximum allowed integer on 32bit servers).
I came up with a solution ...
3
votes
2answers
6k views
PHP json_decode question
i'm trying to use json_decode to combine a few json objects and then re-encode it. my json looks like:
{
"core": {
"segment": [
{
"id": 7,
...
3
votes
1answer
8k views
How to do Ruby object serialization using JSON
I have a structure of simple container classes like so (in pseudo ruby):
class A
attr_reader :string_field1, :string_field2
...
end
class B
attr_reader: int_field3, :string_field4
...
end
# ...
3
votes
4answers
902 views
Help with JSON format [closed]
I'm using a JSON example off the web, as seen below.
{
"menu": "File",
"commands": [
{
"title": "New",
"action":"CreateDoc"
},
{
"title": ...
3
votes
2answers
6k views
ASP.NET JSON Web Service Response format
I have written one simple web service which get product list in JSONText which is string object
Web Service code is below
using System;
using System.Collections.Generic;
using System.Web;
using ...
2
votes
1answer
26 views
JSON Fatal Error foreach
I´ve got the following:
include('php/get_recipe_byID.php');
$jsonstring1 = $recipe_byidarr;
$recip = json_decode($recipe_byidarr, true);
print_r($recip);
foreach ($recip['Data']['Recipes'] as ...
2
votes
3answers
52 views
PHP - Displaying Json encoded messages
I am building an ajax form with JQuery and PHP. The PHP file validates the submitted data and sends back json encoded messages. If however javascript is turned off, the messages look like the ...
2
votes
1answer
89 views
2
votes
2answers
77 views
Why can't I get my JSON Data posted using AJAX in my PHP file?
I have an AJAX script that post data in one of my PHP file:
var _lname = $('#ptLastName').val();
var _fname = $('#ptFirstName').val();
var _mname = $('#ptMiddleName').val();
$.ajax({
...
2
votes
1answer
50 views
How to use variable name to create new variables in PHP?
I'm using Joomla Framework to create component that displays options from a MySQL table.
Because each option has a lot of various parameters they are being set as json arrays in custparams field.
...
2
votes
3answers
124 views
Json to php, json_decode returns NULL
I'm doing JSON parser in php for some API that stores informations about estates. I'm getting problem with the parse, since it's returning me NULL vualue instead of an array or object. Simple JSON ...
2
votes
4answers
157 views
JSON Encode/decode doesn't work as it should
I am preparing and sending a JSON string from my PHP file to my Javascript function like this:
$json = array();
$json['slice'] = false;
$json['G500'] = false;
$json['KG1'] = false;
$encoded = ...
2
votes
4answers
81 views
Error retrieving json with php
I've some problem retrieving json information with a PHP.
I've created a simple php page that returns a json:
$data = array(
'title' => 'Simple title'
);
print json_encode($data);
And in ...
2
votes
1answer
137 views
json_decode - malformed JSON from AJAX Request
I am building a request in Flash that contains a JSON encoded Array of Objects. This is encoded using as3corelib. The request is then passed to JavaScript via ExternalInterface and a jquery ajax call ...
2
votes
3answers
68 views
PHP's json_decode() with this JSON string
I have this JSON string:
{
"name": "test task1",
"desc": "test desc1",
"id": "1"
}{
"name": "test task1aaaa",
"desc": "test desc1",
"id": "2"
}
But it looks like it's not ...
2
votes
2answers
118 views
Android json_decode example
I'm trying to create an application using Json..I can't understand the json_decode concept in android..explain me with some example.Thanks in Advance
2
votes
2answers
246 views
Memory Leak When Pulling JSON from WEB
I've spent days on this and hit it from every angle I can think of. I'm working on a simple windows 7 gadget. This script will pull JSON data from a remote web server and put it on the page. I'm ...
2
votes
1answer
217 views
Echo Twitter share count with PHP?
I am trying to create some text based share buttons for my Wordpress that also output the shared amount. So far I got it working with Facebook and Delicious but I am not sure how to get it going with ...