Skip to content

Instantly share code, notes, and snippets.

@scottlee
Last active December 22, 2015 04:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottlee/6415918 to your computer and use it in GitHub Desktop.
Save scottlee/6415918 to your computer and use it in GitHub Desktop.
Push items onto a multidimensional array.
<?php
/**
* Add items to multidimensional array
*/
function array_push_assoc( $array, $key, $value ){
$array[$key] = $value;
return $array;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment