How to cancel json file?

I want to change the JSON file (using php, python, java or other solutions :))

From:

{
 "name 1" : "value 1",
 "name 2" : "value 2"
}

To:

{
 "value 1" : "name 1",
 "value 2" : "name 2"
}

Ideas? :)

Thank!

+3
source share
1 answer

Try the following:

<?php

$str=<<<EOT
{
 "name 1" : "value 1",
 "name 2" : "value 2"
}
EOT;

echo json_encode(array_flip(json_decode($str,true)));

?>

Output: {"value 1":"name 1","value 2":"name 2"}

+3
source

All Articles