Skip to content

Instantly share code, notes, and snippets.

@livevasiliy
Created January 31, 2019 14:06
Show Gist options
  • Save livevasiliy/fdf3c95a345a11f1cc4bf61cf4819cdd to your computer and use it in GitHub Desktop.
Save livevasiliy/fdf3c95a345a11f1cc4bf61cf4819cdd to your computer and use it in GitHub Desktop.
Push in end value in associative array [EN] | Добавляет в конец значения в ассоциативный массив [RUS}
<?php
/**
* Push in end value in associative array.
* Добавляет в конец значение в ассоциативный массив.
* @return array
*/
function array_push_associative($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