PHP's uniqid in JavaScript

How to use

You you can install via yarn add locutus and require this function via const uniqid = require('locutus/php/misc/uniqid').

It is important to use a bundler that supports tree-shaking so that you only ship the functions that you actually use to your browser, instead of all of Locutus, which is massive. Examples are: Parcel, webpack, or rollup.js. For server-side use this is typically less of a concern.

Examples

Please note that these examples are distilled from test cases that automatically verify our functions still work correctly. This could explain some quirky ones.

#codeexpected result
1var $id = uniqid() var $result = $id.length === 13true
2var $id = uniqid('foo') var $result = $id.length === (13 + 'foo'.length)true
3var $id = uniqid('bar', true) var $result = $id.length === (23 + 'bar'.length)true

Notes

  • Uses an internal counter (in locutus global) to avoid collision

Here’s what our current JavaScript equivalent to PHP's uniqid looks like.

module.exports = function uniqid(prefix, moreEntropy) {
// discuss at: https://locutus.io/php/uniqid/
// original by: Kevin van Zonneveld (https://kvz.io)
// revised by: Kankrelune (https://www.webfaktory.info/)
// note 1: Uses an internal counter (in locutus global) to avoid collision
// example 1: var $id = uniqid()
// example 1: var $result = $id.length === 13
// returns 1: true
// example 2: var $id = uniqid('foo')
// example 2: var $result = $id.length === (13 + 'foo'.length)
// returns 2: true
// example 3: var $id = uniqid('bar', true)
// example 3: var $result = $id.length === (23 + 'bar'.length)
// returns 3: true

if (typeof prefix === 'undefined') {
prefix = ''
}

let retId
const _formatSeed = function (seed, reqWidth) {
seed = parseInt(seed, 10).toString(16) // to hex str
if (reqWidth < seed.length) {
// so long we split
return seed.slice(seed.length - reqWidth)
}
if (reqWidth > seed.length) {
// so short we pad
return Array(1 + (reqWidth - seed.length)).join('0') + seed
}
return seed
}

const $global = typeof window !== 'undefined' ? window : global
$global.$locutus = $global.$locutus || {}
const $locutus = $global.$locutus
$locutus.php = $locutus.php || {}

if (!$locutus.php.uniqidSeed) {
// init seed with big random int
$locutus.php.uniqidSeed = Math.floor(Math.random() * 0x75bcd15)
}
$locutus.php.uniqidSeed++

// start with prefix, add current milliseconds hex string
retId = prefix
retId += _formatSeed(parseInt(new Date().getTime() / 1000, 10), 8)
// add seed hex string
retId += _formatSeed($locutus.php.uniqidSeed, 5)
if (moreEntropy) {
// for more entropy we add a float lower to 10
retId += (Math.random() * 10).toFixed(8).toString()
}

return retId
}

A community effort

Not unlike Wikipedia, Locutus is an ongoing community effort. Our philosophy follows The McDonald’s Theory. This means that we assimilate first iterations with imperfections, hoping for others to take issue with-and improve them. This unorthodox approach has worked very well to foster fun and fruitful collaboration, but please be reminded to use our creations at your own risk. THE SOFTWARE IS PROVIDED "AS IS" has never been more true than for Locutus.

Now go and: [ View on GitHub | Edit on GitHub | View Raw ]


« More PHP misc functions


Star