aboutsummaryrefslogtreecommitdiffstats
path: root/php/helpers.php
blob: cf97ed173c08a431ab37b5c6cb70a2216d1692a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
function toPl(string $str): string
{
  return mb_convert_encoding($str, 'ISO-8859-2', 'UTF-8');
}
function nullOrData(array $array, int|string $key, mixed $default = NULL): mixed
{
  if (array_key_exists($key, $array)) {
    return $array[$key];
  }
  return $default;
}