| Versionen | |
|---|---|
| drupal6 | _lock_id() |
Helper function to get this request's unique id.
includes/
<?php
function _lock_id() {
static $lock_id;
if (!isset($lock_id)) {
// Assign a unique id.
$lock_id = uniqid(mt_rand(), TRUE);
// We only register a shutdown function if a lock is used.
register_shutdown_function('lock_release_all', $lock_id);
}
return $lock_id;
}
?>
Kommentare
Kommentar hinzufügen