Tagged Questions

3
votes
3answers
1k 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 c …
2
votes
3answers
81 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, ' …
2
votes
3answers
195 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 inter …
1
vote
3answers
64 views

Question about json_encode and two dimensional array

Hello everyone, I have a problem when i use json and array. And i need your help. Here is my code: while($row = mysql_fetch_assoc($result)){ echo json_encode($row); } The resu …
1
vote
3answers
473 views

PHP-Json Problem

Hi there.. I have to similar Json files... I can json_decode read one of them... but I can't other one... I've uploaded files to http://www.huzursuz.com/json/json_test.rar if w …
0
votes
1answer
114 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 …
0
votes
2answers
155 views

How do I convert a JSON object to an array for use in jQuery?

I'm building a price estimator form, which uses jQuery to manipulate select menus. Basically, when a new quantity is chosen, the value of each option in every select menu is multip …
0
votes
2answers
78 views

json_encode and nested objects

I have nested PHP objects that I would like to save in memcache. Can I use json_encode(), json_decode() to store/retrieve the data from memcache? Implicit in the question is wheth …
0
votes
2answers
138 views

Howto parse json with smarty?

Hi, In Smarty, is there a standard function or an easy way to parse json from an array, as json_encode() does in php? Actually It seems there is not in smarty documentation but wa …
0
votes
1answer
136 views

jquery decode json object with double quoted keys

I have a script that outputs a json string via json_encode in PHP. The json string consists of [{"custId":"2","custName":"John Inc"}] The PHP script is initiated using $.get …
0
votes
3answers
480 views

encode array to JSON in PHP to get [elm1,elm2,elm3] instead of {elm1:{},elm2:{},elm3:{}}

I am trying to json_encode an array, which is what returns from a Zend_DB query. var_dump gives: (Manually adding 0 member does not change the picture). array(3) { [1]=> ar …
0
votes
3answers
1k 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( 'едно' => ' …