관리-도구
편집 파일: uuid_generate_sha1.phpt
--TEST-- uuid_generate_sha1() function --SKIPIF-- <?php if(!extension_loaded('uuid')) die('skip '); if(!function_exists('uuid_generate_sha1')) die('skip not compiled in (HAVE_UUID_GENERATE_SHA1)'); ?> --FILE-- <?php $uuid = uuid_create(); var_dump($uuid); try { uuid_generate_sha1("not a uuid", "foo"); } catch (ValueError $e) { echo $e->getMessage() . "\n"; // PHP 8 } var_dump($a = uuid_generate_sha1($uuid, "foo")); var_dump($b = uuid_generate_sha1($uuid, "bar")); var_dump($a === $b); var_dump(uuid_type($a) == UUID_TYPE_SHA1); var_dump(uuid_type($b) == UUID_TYPE_SHA1); ?> Done --EXPECTF-- string(36) "%s" %A Argument #1 ($uuid_ns) UUID expecte%A string(36) "%s" string(36) "%s" bool(false) bool(true) bool(true) Done