web-dev-qa-db-ja.com

PHP v4 UUIDを生成する関数

だから、私はいくつか掘り下げて、PHPで有効なv4 UUIDを生成する関数をつなぎ合わせようとしました。これは私が来た中で最も近いものです。 16進、10進、2進、PHPのビット演算子などに関する私の知識はほとんど存在しません。この関数は、1つの領域まで有効なv4 UUIDを生成します。 v4 UUIDは次の形式である必要があります。

xxxxxxxx-xxxx -4 xxx -y xxx-xxxxxxxxxxxx

ここで、yは8、9、A、またはBです。これは、それに従っていないために機能が失敗する場所です。

この分野で私よりも知識のある人に手を貸してもらい、このルールを遵守するようにこの機能を修正するのを手伝ってくれることを望んでいました。

機能は次のとおりです。

<?php

function gen_uuid() {
 $uuid = array(
  'time_low'  => 0,
  'time_mid'  => 0,
  'time_hi'  => 0,
  'clock_seq_hi' => 0,
  'clock_seq_low' => 0,
  'node'   => array()
 );

 $uuid['time_low'] = mt_Rand(0, 0xffff) + (mt_Rand(0, 0xffff) << 16);
 $uuid['time_mid'] = mt_Rand(0, 0xffff);
 $uuid['time_hi'] = (4 << 12) | (mt_Rand(0, 0x1000));
 $uuid['clock_seq_hi'] = (1 << 7) | (mt_Rand(0, 128));
 $uuid['clock_seq_low'] = mt_Rand(0, 255);

 for ($i = 0; $i < 6; $i++) {
  $uuid['node'][$i] = mt_Rand(0, 255);
 }

 $uuid = sprintf('%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x',
  $uuid['time_low'],
  $uuid['time_mid'],
  $uuid['time_hi'],
  $uuid['clock_seq_hi'],
  $uuid['clock_seq_low'],
  $uuid['node'][0],
  $uuid['node'][1],
  $uuid['node'][2],
  $uuid['node'][3],
  $uuid['node'][4],
  $uuid['node'][5]
 );

 return $uuid;
}

?>

私を助けてくれる人に感謝します。

199
anomareh

PHPマニュアルの this コメントから取った、これを使用できます:

function gen_uuid() {
    return sprintf( '%04x%04x-%04x-%04x-%04x-%04x%04x%04x',
        // 32 bits for "time_low"
        mt_Rand( 0, 0xffff ), mt_Rand( 0, 0xffff ),

        // 16 bits for "time_mid"
        mt_Rand( 0, 0xffff ),

        // 16 bits for "time_hi_and_version",
        // four most significant bits holds version number 4
        mt_Rand( 0, 0x0fff ) | 0x4000,

        // 16 bits, 8 bits for "clk_seq_hi_res",
        // 8 bits for "clk_seq_low",
        // two most significant bits holds zero and one for variant DCE1.1
        mt_Rand( 0, 0x3fff ) | 0x8000,

        // 48 bits for "node"
        mt_Rand( 0, 0xffff ), mt_Rand( 0, 0xffff ), mt_Rand( 0, 0xffff )
    );
}
247
William

個々のフィールドに分割する代わりに、データのランダムブロックを生成し、個々のバイト位置を変更する方が簡単です。また、mt_Rand()よりも優れた乱数ジェネレーターを使用する必要があります。

RFC 4122-セクション4.4 に従って、これらのフィールドを変更する必要があります。

  1. time_hi_and_version(7オクテットのビット4-7)、
  2. clock_seq_hi_and_reserved(9オクテットのビット6および7)

他の122ビットはすべて、十分にランダムでなければなりません。

次のアプローチでは、 openssl_random_pseudo_bytes() を使用して128ビットのランダムデータを生成し、オクテットの順列を作成してから bin2hex() および vsprintf() を使用して最終フォーマットを行います。 。

function guidv4($data)
{
    assert(strlen($data) == 16);

    $data[6] = chr(ord($data[6]) & 0x0f | 0x40); // set version to 0100
    $data[8] = chr(ord($data[8]) & 0x3f | 0x80); // set bits 6-7 to 10

    return vsprintf('%s%s-%s-%s-%s-%s%s%s', str_split(bin2hex($data), 4));
}

echo guidv4(openssl_random_pseudo_bytes(16));

PHP 7を使用すると、 random_bytes() を使用してランダムバイトシーケンスを生成するのがさらに簡単になります。

echo guidv4(random_bytes(16));
331
Ja͢ck

composer依存関係を使用している場合は、このライブラリを検討することをお勧めします。 https://github.com/ramsey/uuid

これより簡単なことはありません。

Uuid::uuid4();
106
djule5

uNIXシステムでは、システムカーネルを使用してuuidを生成します。

file_get_contents('/proc/sys/kernel/random/uuid')

https://serverfault.com/a/529319/210994 のクレジットSamveen

注!:このメソッドを使用してuuidを取得すると、実際にはエントロピープールが非常に速く枯渇します!頻繁に呼び出される場所ではこれを使用しないようにします。

16
ThorSummoner

V4 uuidを作成するための検索で、最初にこのページにアクセスし、次にこれを http://php.net/manual/en/function.com-create-guid.php で見つけました。

function guidv4()
{
    if (function_exists('com_create_guid') === true)
        return trim(com_create_guid(), '{}');

    $data = openssl_random_pseudo_bytes(16);
    $data[6] = chr(ord($data[6]) & 0x0f | 0x40); // set version to 0100
    $data[8] = chr(ord($data[8]) & 0x3f | 0x80); // set bits 6-7 to 10
    return vsprintf('%s%s-%s-%s-%s-%s%s%s', str_split(bin2hex($data), 4));
}

クレジット:pavel.volyntsev

編集:明確にするために、この関数は常にv4 uuidを提供します(PHP> = 5.3.0)。

Com_create_guid関数が使用可能な場合(通常はWindowsのみ)、それを使用して中括弧を取り除きます。

存在しない場合(Linux)、この強力なランダムopenssl_random_pseudo_bytes関数にフォールバックし、vsprintfを使用してv4 uuidにフォーマットします。

8
Arie

私の答えはコメントに基づいています niqid user comment しかし、それは openssl_random_pseudo_bytes 関数を使用して、/dev/urandomから読み取る代わりにランダムな文字列を生成します

function guid()
{
    $randomString = openssl_random_pseudo_bytes(16);
    $time_low = bin2hex(substr($randomString, 0, 4));
    $time_mid = bin2hex(substr($randomString, 4, 2));
    $time_hi_and_version = bin2hex(substr($randomString, 6, 2));
    $clock_seq_hi_and_reserved = bin2hex(substr($randomString, 8, 2));
    $node = bin2hex(substr($randomString, 10, 6));

    /**
     * Set the four most significant bits (bits 12 through 15) of the
     * time_hi_and_version field to the 4-bit version number from
     * Section 4.1.3.
     * @see http://tools.ietf.org/html/rfc4122#section-4.1.3
    */
    $time_hi_and_version = hexdec($time_hi_and_version);
    $time_hi_and_version = $time_hi_and_version >> 4;
    $time_hi_and_version = $time_hi_and_version | 0x4000;

    /**
     * Set the two most significant bits (bits 6 and 7) of the
     * clock_seq_hi_and_reserved to zero and one, respectively.
     */
    $clock_seq_hi_and_reserved = hexdec($clock_seq_hi_and_reserved);
    $clock_seq_hi_and_reserved = $clock_seq_hi_and_reserved >> 2;
    $clock_seq_hi_and_reserved = $clock_seq_hi_and_reserved | 0x8000;

    return sprintf('%08s-%04s-%04x-%04x-%012s', $time_low, $time_mid, $time_hi_and_version, $clock_seq_hi_and_reserved, $node);
} // guid
5
Victor Smirnov

broofa 's answer here に触発されました。

preg_replace_callback('/[xy]/', function ($matches)
{
  return dechex('x' == $matches[0] ? mt_Rand(0, 15) : (mt_Rand(0, 15) & 0x3 | 0x8));
}
, 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx');

または、匿名関数を使用できない場合。

preg_replace_callback('/[xy]/', create_function(
  '$matches',
  'return dechex("x" == $matches[0] ? mt_Rand(0, 15) : (mt_Rand(0, 15) & 0x3 | 0x8));'
)
, 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx');
3
MichaelRushton

CakePHPを使用する場合、 CakeText クラスのメソッドCakeText::uuid();を使用して、RFC4122 uuidを生成できます。

3
bish

まったく同じものを検索し、ほぼ自分でこのバージョンを実装しているので、WordPressフレームワーク、WPには、まさにこのための独自の便利な機能があります。

$myUUID = wp_generate_uuid4();

説明とソースを読むことができます here

2
indextwo

PHP <7のサポートを追加するための ジャックの答え のわずかなバリエーション:

// Get an RFC-4122 compliant globaly unique identifier
function get_guid() {
    $data = PHP_MAJOR_VERSION < 7 ? openssl_random_pseudo_bytes(16) : random_bytes(16);
    $data[6] = chr(ord($data[6]) & 0x0f | 0x40);    // Set version to 0100
    $data[8] = chr(ord($data[8]) & 0x3f | 0x80);    // Set bits 6-7 to 10
    return vsprintf('%s%s-%s-%s-%s-%s%s%s', str_split(bin2hex($data), 4));
}
1
Danny Beckett

Mysqlを使用してuuidを生成してみませんか?

$conn = new mysqli($servername, $username, $password, $dbname, $port);

$query = 'SELECT UUID()';
echo $conn->query($query)->fetch_row()[0];
1
Hoan

Tomから http://www.php.net/manual/en/function.uniqid.php

$r = unpack('v*', fread(fopen('/dev/random', 'r'),16));
$uuid = sprintf('%04x%04x-%04x-%04x-%04x-%04x%04x%04x',
    $r[1], $r[2], $r[3], $r[4] & 0x0fff | 0x4000,
    $r[5] & 0x3fff | 0x8000, $r[6], $r[7], $r[8])
1
amgine

4xxxおよびyxxx部分のバイナリから10進数への変換を行うよりエレガントな方法があると確信しています。しかし、openssl_random_pseudo_bytesを暗号学的に安全な番号ジェネレータとして使用したい場合、これが私が使用するものです:

return sprintf('%s-%s-%04x-%04x-%s',
    bin2hex(openssl_random_pseudo_bytes(4)),
    bin2hex(openssl_random_pseudo_bytes(2)),
    hexdec(bin2hex(openssl_random_pseudo_bytes(2))) & 0x0fff | 0x4000,
    hexdec(bin2hex(openssl_random_pseudo_bytes(2))) & 0x3fff | 0x8000,
    bin2hex(openssl_random_pseudo_bytes(6))
    );
0
Baracus