Skip to content

Instantly share code, notes, and snippets.

@levonlee
Last active August 29, 2015 14:24
Show Gist options
  • Save levonlee/2aaa97001f45a1c36da2 to your computer and use it in GitHub Desktop.
Save levonlee/2aaa97001f45a1c36da2 to your computer and use it in GitHub Desktop.
Conditionally add key and value inside array();
<?php
$condition = true;
$arr = array(
'a' => 'abc',
($condition ? 'b' : '') => ($condition ? '123' : ''),
($condition ? 'c' : '') => ($condition ? 'xyz' : ''),
);
$arr = array_filter($arr);
var_dump($arr);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment