anytizer / guid.php
There is no license information available for the latest version (dev-master) of this package.
GUID Generator for PHP
dev-master
2022-06-05 08:34 UTC
This package is auto-updated.
Last update: 2025-03-05 14:30:23 UTC
README
Generates a unique ID, alike C# GUIDs, using PHP. See Inspirations.
<?php
use anytizer\guid;
require_once("vendor/autoload.php");
$g = new guid();
$guid = $g->NewGuid();
Installation
Use one of:
composer require anytizer/guid.php=dev-master
composer global require anytizer/guid.php=dev-master