1

Let's say you have a comma-delimited string:

$str = 'a,b,c';

Calling explode(',', $str); will return the following:

array('a', 'b', 'c')

Is there a way to explode such that the resulting array's keys, and not values, are populated? Something like this:

array('a' => null, 'b' => null, 'c' => null)

3 Answers 3

3

You can use array_fill_keys to use the output of explode as keys to a new array with a given value:

$str = 'a,b,c';
$out = array_fill_keys(explode(',', $str), null);
var_dump($out);

Output:

array(3) {
  ["a"]=>
  NULL
  ["b"]=>
  NULL
  ["c"]=>
  NULL
}

Demo on 3v4l.org

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

Comments

0

something like this:

$str = 'a,b,c';
$arr = [];
foreach ($explode(',', $str) as $key) {
    $arr[$key] = null;
}

not that pretty but it works

Comments

0

You can simply use explode with foreach

$res = [];
foreach(explode(",", $str) as $key){
  $res[$key] = null;
}
print_r($res);

https://3v4l.org/KGlfA

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.