PHP中的特定JSON格式

时间:2012-10-09 06:07:45

标签: php json

我需要这个带有PHP代码的json格式

有没有办法像这样生成JSON 用PHP?

[
      {
         "name":"Steve",
         "company":"Apple"
      },
      {
         "name":"Bill",
         "company":"Microsoft"
      }
]

任何人都可以帮忙吗?

7 个答案:

答案 0 :(得分:2)

使用json_encode

$var = json_encode($array);

答案 1 :(得分:2)

你想这样做:

$a = array();
$b = array('name' => '', 'company' => '');

$b['name'] = 'Steve';
$b['company'] = 'Apple';
$a[]= $b;

$b['name'] ='Bill';
$b['company']='Microsoft';
$a[]= $b;

echo json_encode($a);

这会给你

[
  {
    "name": "Steve",
    "company": "Apple"
  },
  {
    "name": "Bill",
    "company": "Microsoft"
  }
]

答案 2 :(得分:2)

您可以像这样使用json_encode

$my_data = array(
    array(
        'name' => 'Steve',
        'company' => 'Apple'
    ),
    array(
        'name' => 'Bill',
        'company' => 'Microsoft'
    )
);
echo json_encode($my_data);

两个内部数组都包含相同的键并不重要,因为它们仍在单独的数组中,并且在以JSON编码时将正确形成。

答案 3 :(得分:1)

试试这个:

json_encode($variableName);

答案 4 :(得分:1)

$array = array (
  array ('name' => 'Steve', 'company' => 'Apple', ),
  array ('name' => 'Bill', 'company' => 'Microsoft', ),
);
$result = json_encode($array);

这个

$person_steve = new stdClass;
$person_steve->name = 'Steve';
$person_steve->company = 'Apple';
$person_bill = new stdClass;
$person_bill->name = 'Bill';
$person_bill->company = 'Microsoft';
$array = array ($person_steve, $person_bill);
$result = json_encode($array);

答案 5 :(得分:0)

您可以使用json_encode

# To Output
die(json_encode($myarray));

# To Store
$myJson = json_encode($myarray);

答案 6 :(得分:0)

只需记下json_encode,如果您的代码需要,您需要添加方括号。

echo '['.json_encode(array('index1'=>1)).']';