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: 2024-09-05 13:26:01 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