PHP jSon数据清除不需要的空格的值

时间:2014-01-04 13:21:57

标签: php json space

以下是我使用

获取的JSON数据
$json = json_encode($array);

我的JSON数据;

{
"id":"352",
"date":"2013-12-25 01:10:06",
"category":"2",
"subtitle":null,
"description":" This text is description... ",
"hit":"144",
"rate":"50.00",
"active":"1"
}

认为有数以千计的这类物品。

但问题是如何在运行json_encode时自动修剪此对象的描述值?

由于我的表现,我不想“为每个人”使用。

...谢谢

1 个答案:

答案 0 :(得分:1)

array_map中使用trim作为:

$json = json_encode(array_map('trim',$array));