phpvms/app/Support/ICAO.php
2019-04-07 22:27:09 -05:00

26 lines
482 B
PHP

<?php
namespace App\Support;
/**
* ICAO Helper Tools
*/
class ICAO
{
/**
* Create a random hex code. Eventually this may follow the format in:
* ICAO Aeronautical Telecommunications, Annex 10, Vol. III, chapter 9
*
* @param null $country
*
* @throws \Exception
*
* @return string
*/
public static function createHexCode($country = null): string
{
$bytes = random_bytes(4);
return bin2hex($bytes);
}
}