phpvms/app/Support/ICAO.php
2018-02-12 20:58:23 -06:00

24 lines
450 B
PHP

<?php
namespace App\Support;
/**
* ICAO Helper Tools
* @package App\Support
*/
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
* @return string
*/
public static function createHexCode($country=null)
{
$bytes = random_bytes(4);
return bin2hex($bytes);
}
}