You are here

function uuid_uri_to_data in Universally Unique IDentifier 7

Converts a UUID URI string to an entity data array.

Parameters

string $uri: The URI to convert.

Return value

array The entity data.

See also

uuid_uri_array_to_data()

File

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

Code

function uuid_uri_to_data($uri, $strip_uuid = TRUE) {
  return uuid_uri_array_to_data(explode('/', $uri));
}