Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

From PHP code I want to create an json array:

[
{"region":"valore","price":"valore2"},
{"region":"valore","price":"valore2"},
{"region":"valore","price":"valore2"}
]

How can I do this ??

share|improve this question

3 Answers

Easy peasy lemon squeezy: http://www.php.net/manual/en/function.json-encode.php

<?php
$arr = array('a' => 1, 'b' => 2, 'c' => 3, 'd' => 4, 'e' => 5);

echo json_encode($arr);
?>

There's a post by andyrusterholz at g-m-a-i-l dot c-o-m on the aforementioned page that can also handle complex nested arrays (if that's your thing).

share|improve this answer
2  
Dang, homie, you were instantaneous on that answer = ). I was excited about the easy question = ) – Calvin Froedge Jul 18 '11 at 21:53
1  
I have this code while($row=mysql_fetch_assoc($query_insert)) { $control=array('regione'=>$row["regione"],'totale'=>$row["prezzi"]); } print (json_encode(%control)); but retun {"regione":"Puglia","totale":"5.15"} not [{..},{..}] – Mimmo Jul 18 '11 at 22:10

Use PHP's native json_encode, like this:

<?php
$arr = array(
    array(
        "region" => "valore",
        "price" => "valore2"
    ),
    array(
        "region" => "valore",
        "price" => "valore2"
    ),
    array(
        "region" => "valore",
        "price" => "valore2"
    )
);

echo json_encode($arr);
?>

Update: To answer your question in the comment. You do it like this:

$named_array = array(
    "nome_array" => array(
        array(
            "foo" => "bar"
        ),
        array(
            "foo" => "baz"
        )
    )
);
echo json_encode($named_array);
share|improve this answer
Excuse me but if I want {"nome_array": [{"foo":"bar"},{"foo":"baz"}]} ?? – Mimmo Jul 18 '11 at 23:12
@Mimmo: I updated my answer to solve your question. – Shef Jul 19 '11 at 7:20

Simple: Just create a (nested) PHP array and call json_encode on it. Numeric arrays translate into JSON lists ([]), associative arrays and PHP objects translate into objects ({}). Example:

$a = array(
        array('foo' => 'bar'),
        array('foo' => 'baz'));
$json = json_encode($a);

Gives you:

[{"foo":"bar"},{"foo":"baz"}]
share|improve this answer
thank you very much !!! – Mimmo Jul 18 '11 at 22:18
Excuse me but if I want {"nome_array": [{"foo":"bar"},{"foo":"baz"}]} ?? – Mimmo Jul 18 '11 at 22:45
help me please... – Mimmo Jul 18 '11 at 23:12
Read my post again. If you want something to translate into a JSON object, make it an associative array in PHP (where the keys are strings). If you want it to translate into a JSON list, make it a plain array (with implicit integer keys). The value of each array element can in turn be an array, which is what you want. – tdammers Jul 19 '11 at 8:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.