PHP code example of vend / mysql-uuid
1. Go to this page and download the library: Download vend/mysql-uuid library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
vend / mysql-uuid example snippets
use MysqlUuid\Uuid;
use MysqlUuid\Formats\Binary;
$uuid = new Uuid('02fbfeee-02ff-11e4-9583-080027f3add4');
$hex = $uuid->toFormat(new Hex()); // string: 02fbfeee02ff11e49583080027f3add4
$reordered = $uuid->toFormat(new Reordered()); // string: 080027f3-add4-11e4-9583-02ff02fbfeee
$binary = $uuid->toFormat(new Binary()); // string: \x08\x00\x27\xf3\xad\xd4\x95\x83\x11\xe4\x02\xff\x02\xfb\xfe\xee