You are here

function _uuid_generate_pecl in Universally Unique IDentifier 7

Generates an universally unique identifier using the PECL extension.

1 string reference to '_uuid_generate_pecl'
uuid_generate in ./uuid.inc
Generates an universally unique identifier.

File

./uuid.inc, line 218
Handling of universally unique identifiers.

Code

function _uuid_generate_pecl() {
  return uuid_create(UUID_TYPE_DEFAULT);
}