Dotfiles, utilities, and other apparatus.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
185 B

  1. <?php
  2. error_reporting(E_ALL);
  3. ini_set('display_errors', 1);
  4. $bar = [
  5. 'thing' => 'otherthing',
  6. ];
  7. $foo = [];
  8. foreach ($bar as $key => $value) {
  9. $foo[$key] = $value;
  10. }
  11. print_r($bar);