标签: php
我以这种方式加载json:
$json = file_get_contents("world_ita.json"); $data = json_decode($json, true);
但文件中有“美国”或“英属群岛”
我需要解析文档,以便用下划线替换所有空格并使用它:
United_States or British_Islands
答案 0 :(得分:2)
$output = str_replace(' ', '_', $input);