如何在json对象中添加_到空格?

时间:2018-03-24 09:11:54

标签: php

我以这种方式加载json:

  $json = file_get_contents("world_ita.json");
  $data = json_decode($json, true);

但文件中有“美国”或“英属群岛”

我需要解析文档,以便用下划线替换所有空格并使用它:

United_States or British_Islands

1 个答案:

答案 0 :(得分:2)

$output = str_replace(' ', '_', $input);