xakepehok/array-to-uuid-helper

This library can convert array to uuid string

Installs: 149

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/xakepehok/array-to-uuid-helper

0.1.0 2024-01-29 11:27 UTC

This package is not auto-updated.

Last update: 2025-10-07 18:06:47 UTC


README

Installation

composer require xakepehok/array-to-uuid-helper

Usage

<?php
$data = [
    "hello" => "world",
    "nested" => [
        "value_1" => 1,
        "value_2" => 2,
    ],
];


// Print "13e6457d-e400-4ca3-86d0-c50624604a02"
echo \XAKEPEHOK\ArrayToUuidHelper\ArrayToUuidHelper::generate($fields);