0

I have a json string, now i want it to become another string like an array and the $key is the same with $value

original string:

$input='
{
        "label_values":[
        "OK1","OK2","OK3"
        ]
}'

tried json_decode

$obj = json_decode($input);
$results = $obj->{'label_values'};
$result = implode(",", $results);

and $result export OK1,OK2,OK3

$key is the same with $value,i want it change to below example

Array(
        "OK1"=>"OK1",
        "OK2"=>"OK2",
        "OK3"=>"OK3"
)

Any help is greatly appreciated

1
  • can you print_r($results);? Commented Mar 10, 2016 at 2:36

1 Answer 1

2

You can simply use array_combine().

array_combine() returns an array using first argument as keys and second argument as values:

$result = array_combine( $results, $results );

3v4l demo


Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.