mirror of
https://github.com/sigmasternchen/drnk.me
synced 2025-03-15 17:58:54 +00:00
11 lines
250 B
PHP
11 lines
250 B
PHP
![]() |
<?php
|
||
|
|
||
|
function &array_get_or_add($needle, array &$haystack, $default=null) {
|
||
|
if (key_exists($needle, $haystack)) {
|
||
|
return $haystack[$needle];
|
||
|
} else {
|
||
|
$haystack[$needle] = $default;
|
||
|
return $haystack[$needle];
|
||
|
}
|
||
|
}
|