Tagged Questions
json_encode is a PHP function that converts a PHP value into a UTF-8 JSON encoded string.
18
votes
4answers
6k views
json_encode is returning NULL?
For some reason the item "description" returns NULL with the following code:
<?php
include('db.php');
$result = mysql_query('SELECT * FROM `staff` ORDER BY `id` DESC LIMIT 2') or ...
14
votes
1answer
160 views
JSON and PHP arrays
json_encode(array(
array(0 => "431.940054495913"),
array(1 => "431.940054495913"),
));
Is render like this:
[
["431.940054495913"],
{"1":"431.940054495913"}
]
Why are the ...
11
votes
9answers
4k views
PHP json_encode encoding numbers as strings
I am having one problem with the PHP json_encode function. It encodes numbers as strings (e.g. array('id' => 3 becomes "{ ["id": "3", ...) When js encounters these values, it interprets them as ...
9
votes
4answers
1k views
php json_encode utf8 char problem ( mysql )
I am writing to the database in the form of data from a form with jQuery json_encode.
However, data from the database will corrupt.
$db->query("SET NAMES utf8");
$kelime = ...
7
votes
2answers
220 views
Storing arrays in the database
I'm wondering if it is actually good practise to store Arrays in the database ? I tend to use json_encode rather than serialize, but was just wondering if it is a good idea. If not, then I can make ...
7
votes
2answers
1k views
PHP: need json_encode() 5.3 functionality in 5.2
Long story short, client's hosting is using php 5.2.5 and i desperately need to use the JSON_FORCE_OBJECT option with json_encode() that came with 5.3. Does anyone know some equivalent for that ...
6
votes
7answers
11k views
PHP's json_encode does not escape all JSON control characters
Is there any reasons why PHP's json_encode function does not escape all JSON control characters in a string?
For example let's take a string which spans two rows and has control characters (\r \n " / ...
5
votes
6answers
3k views
Escaping escape Characters
I'm trying to mimic the json_encode bitmask flags implemented in PHP 5.3.0, here is the string I have:
$s = addslashes('O\'Rei"lly'); // O\'Rei\"lly
Doing json_encode($s, JSON_HEX_APOS | ...
4
votes
4answers
367 views
Serializing PHP object to JSON
So I was wandering around php.net for information about serializing PHP objects to JSON, when I stumbled across the new JsonSerializable Interface. It's only PHP >= 5.4 though, and I'm running in a ...
4
votes
1answer
183 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
206 views
change json key name [ json generated using json_encode ]
I am generating json from an array using json_encode(), it's working properly, but it uses the key:value from the array, as usual. but I want to change the name of the key only in the json output.. is ...
4
votes
3answers
692 views
How to keep json_encode() from dropping strings with invalid characters
Is there a way to keep json_encode() from returning null for a string that contains an invalid (non-UTF-8) character?
It can be a pain in the ass to debug in a complex system. It would be much more ...
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
3answers
3k views
PHP json_encode and javascript functions
I need to encode a javascript function into a JSON object in PHP.
This:
$function = "function(){}";
$message = "Hello";
$json = array(
'message' => $message,
'func' => ...
4
votes
4answers
6k views
Cyrillic characters in PHP's json_encode
I'm trying to encode Cyrillic UTF-8 array to JSON string using php's function json_encode. The sample code looks like this:
<?php
$arr = array(
'едно' => 'първи',
...
3
votes
2answers
107 views
Backbone: Create collection from JSON
I'm attempting to load JSON (from php's json_encode) into a Backbone JS collection. I've simplified the problem to:
var myJSON = '[{ "id":"1","name":"some name","description":"hmmm"}]';
var ...
3
votes
2answers
58 views
Best way to create an empty object in JSON with PHP?
To create an empty JSON object I do usually use:
json_encode((object) null);
casting null to an object works, but is there any other preferable way and/or any problem with this solution?
3
votes
1answer
91 views
Content length: 0 in a json response Symfony2
Always i get a blank, i have a action in my controller like this
/**
* @Route("/check/{key}.json", defaults={"_format"="json"})
* @Template()
*/
public function processAction($upload_key)
{
/* ...
3
votes
2answers
60 views
json_encode return undefined
My script returns undefined value from my json_encode php
index.php
<?php
$returnThis['user'] = "Robin098";
$returnThis['id'] = "08465";
echo json_encode($returnThis);
?>
...
3
votes
1answer
47 views
json_encode - PHP gives uncomplete json string
First my Setting:
PHP 5.3.2 - with Suoshin and xCache
lighttpd/1.4.26
My Code is too much to Post it here. I will discribe it.
File x.php is loading some PHP - Classe, init them, executes some ...
3
votes
3answers
438 views
How to json_encode array with french accents?
I have an array item with a French accent ([WIPDescription] => Recette Soupe à lOignon Sans Boeuf US). The data is being properly pulled from the database (mysql).
However, when I try to encode ...
3
votes
6answers
264 views
PHP json_encode encode a function
How to encode a javascript function in PHP ? I want to encode the callback function with array
$options = array(
'title' => 'Title',
'fnCallback' => someCallback);
equivalent ini javascript
...
3
votes
4answers
3k views
Using json_encode on objects in PHP (irregardless of scope)
I'm trying to output lists of objects as json and would like to know if there's a way to make objects usable to json_encode? The code I've got looks something like
$related = ...
3
votes
2answers
218 views
When to use PHP's json_encode function's second param ( the bitmasks )
PHP's json_encode function as a second optional param ( bitmasks ). Can someone explain to me what they're for and when I should use them and why?
Thanks
3
votes
2answers
2k views
UTF-8 character encoding battles json_encode()
Quest
I am looking to fetch rows that have accented characters. The encoding for the column (NAME) is latin1_swedish_ci.
The Code
The following query returns Abord â Plouffe using phpMyAdmin:
...
3
votes
2answers
616 views
json parsing in objective c
while parsing the content of a .json file, string like "jamie's" is represented as "jamie 's".Any one know why it is so?
Thanks in advance for any help
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
# ...
2
votes
2answers
18 views
Json with strange names
First sorry for my English
I have a problem with JSON.
Assume the following array in PHP
$msg['keyone'] = "bla1";
$msg['key_two'] = "bla2";
$msg['key-three'] = "bla3";
I convert it into JSON
...
2
votes
3answers
51 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
37 views
How to display every element in json_encode result into PHP tabular
----Result of test.php------
[{"fruit":"apple","price":1.2},{"fruit":"pear","price":1.5},{"fruit":"orange","price":1.0}]
The above code is result of test.php by using json_encode().
...
2
votes
4answers
156 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
4answers
91 views
Needing help with JSON problems
i'm with this problem at PHP when i'm try to convert an array to an json
I have an recursive function that build the array to encode it on jSon format.
That's the array:
$data = array(
...
2
votes
1answer
799 views
jQuery json_encode
I've looked around for a Javascript/jQuery function which emulates PHP's json_encode, but all the ones I find (listed bellow) don't work.
http://code.google.com/p/jquery-json/
...
2
votes
4answers
504 views
PHP json_encode not returning valid json
I am running a Debian box with PHP v5.2.17. I am trying to get around the cross-domain issue with an XML file and am using this got to fetch any xml and return json:
<?php
header('content-type: ...
2
votes
5answers
1k views
php json_encode
I have a symfony app that uses the json_encode and json_decode to keep a record of some prices.
The problem is that json_decode works OK in one file (I can decode the string stored in my PSQL ...
2
votes
1answer
232 views
XSS : Creating a javascript object using PHP's json_encode
Is this 100% safe against XSS?
If not, can you please provide example bad string text showing me why it is not.
<html>
<body>
<script>
<?php
$bad = "some bad ...
2
votes
1answer
292 views
json_encode returning null if array not accessed before
In my code I build an array and encode it using json_encode,
json_encode returns null for this array unless I insert the instruction "echo $responce->rows[0][0];" before encoding, if I comment out ...
2
votes
3answers
218 views
Any PHP function that will strip properties of an object that are null?
I am returning a json_encode() of an array of objects pulled from an ORM. It includes lots of properties with a null value. What is the neatest way to remove these properties that are null? I guess ...
2
votes
5answers
2k views
Serializing Entity Framework problems
Like several other people, I'm having problems serializing Entity Framework objects, so that I can send the data over AJAX in a JSON format.
I've got the following server-side method, which I'm ...
2
votes
5answers
664 views
how to use json_encode without PHP 5.2
I've written a CMS which uses the PHP function json_encode to send some data back via an Ajax Request.
Unfortunately, I'm trying to load it onto a server which is running PHP version 5.1, the ...
2
votes
2answers
257 views
Serializing Python bytestrings to JSON, preserving ordinal character values
I have some binary data produced as base-256 bytestrings in Python (2.x). I need to read these into JavaScript, preserving the ordinal value of each byte (char) in the string. If you'll allow me to ...
2
votes
1answer
1k views
json_encode adding unwanted slashes
Hello all
I have a json string saved in my db. When i retrieve it from db to pass it to the javascript function (ajax call) , along with the id of that row, i am json_encoding both (the query result ...
2
votes
1answer
1k views
Reading JSON (with jQuery) produced by PHP containing @attributes
What are those "@attributes" thing I have in my JSON file and how can I read that with JQuery?
The JSON "text" I use is produced with json_encode in PHP from an array of custom objects.
Here's a ...
2
votes
2answers
631 views
Unable to decode JSON stripslashed String?
Does anyone know why this happens?
var_dump(json_decode(stripslashes(json_encode(array("O'Reiley"))))); // array(1) { [0]=> string(8) "O'Reiley" }
...
1
vote
1answer
35 views
What's IE6/7 save way to pass json_encoded data from PHP into jQuery/Javascript?
I have several situations where I need to pass multi-dimensional PHP arrays into Javascript/jQuery. The PHP function json_encode() seems to do this rather well. I've seen some examples that use ...
1
vote
1answer
32 views
How to control json_encode behavior?
Is there any way to control json_encode behavior on objects? Like excluding empty arrays, null fields and so on?
I mean something like when using serialize(), where you can implement magic __sleep() ...
1
vote
2answers
39 views
PHP/MongoDB JSON Encode - Can't access private variables of an inner class when calling json_encode()
So basically, I am trying to encode a php class object I have, and insert it directly into MongoDB. Problem is, my class has an array variable meant to hold previous versions of the class, so those ...
1
vote
2answers
34 views
Android: Manipulating Parsed JSON for an IF Statement
I am developing an android application that uses sql & php to connect to an external server. I AM able to retrieve the correct information into the application, however, I am having trouble ...
1
vote
1answer
148 views
JSON load/dump in Python
From the docs :
http://docs.python.org/library/json.html
>>> json.loads('["foo", {"bar":["baz", null, 1.0, 2]}]')
[u'foo', {u'bar': [u'baz', None, 1.0, 2]}]
I modified it like ...