Esempio n. 1
0
/**
 * Generation ou formatage d'un uuid
 *
 * @param string $format
 * @param null $uuid
 * @return NULL|number|string
 * @throws \Exception
 */
function uuid($format = 'bytes', $uuid = null)
{
    if (is_null($uuid)) {
        $uuid = Uuid::generate(4)->{$format};
    } else {
        $uuid = Uuid::import($uuid)->{$format};
    }
    return $uuid;
}