PHP's array_multisort in JavaScript

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

module.exports = functionarray_multisort (arr) { // eslint-disable-line camelcase
// discuss at: https://locutus.io/php/array_multisort/
// original by: Theriault (https://github.com/Theriault)
// improved by: Oleg Andreyev (https://github.com/oleg-andreyev)
// example 1: array_multisort([1, 2, 1, 2, 1, 2], [1, 2, 3, 4, 5, 6])
// returns 1: true
// example 2: var $characters = {A: 'Edward', B: 'Locke', C: 'Sabin', D: 'Terra', E: 'Edward'}
// example 2: var $jobs = {A: 'Warrior', B: 'Thief', C: 'Monk', D: 'Mage', E: 'Knight'}
// example 2: array_multisort($characters, 'SORT_DESC', 'SORT_STRING', $jobs, 'SORT_ASC', 'SORT_STRING')
// returns 2: true
// example 3: var $lastnames = [ 'Carter','Adams','Monroe','Tyler','Madison','Kennedy','Adams']
// example 3: var $firstnames = ['James', 'John' ,'James', 'John', 'James', 'John', 'John']
// example 3: var $president = [ 39, 6, 5, 10, 4, 35, 2 ]
// example 3: array_multisort($firstnames, 'SORT_DESC', 'SORT_STRING', $lastnames, 'SORT_ASC', 'SORT_STRING', $president, 'SORT_NUMERIC')
// returns 3: true
// note 1: flags: Translation table for sort arguments.
// note 1: Each argument turns on certain bits in the flag byte through addition.
// note 1: bits: HGFE DCBA
// note 1: args: Holds pointer to arguments for reassignment
let g
let i
let j
let k
let l
let sal
let vkey
let elIndex
let lastSorts
let tmpArray
let zlast
const sortFlag = [0]
const thingsToSort = []
let nLastSort = []
let lastSort = []
// possibly redundant
const args = arguments
const flags = {
SORT_REGULAR: 16,
SORT_NUMERIC: 17,
SORT_STRING: 18,
SORT_ASC: 32,
SORT_DESC: 40
}
const sortDuplicator = function (a, b) {
return nLastSort.shift()
}
const sortFunctions = [
[
function (a, b) {
lastSort.push(a > b ? 1 : (a < b ? -1 : 0))
return a > b ? 1 : (a < b ? -1 : 0)
},
function (a, b) {
lastSort.push(b > a ? 1 : (b < a ? -1 : 0))
return b > a ? 1 : (b < a ? -1 : 0)
}
],
[
function (a, b) {
lastSort.push(a - b)
return a - b
},
function (a, b) {
lastSort.push(b - a)
return b - a
}
],
[
function (a, b) {
lastSort.push((a + '') > (b + '') ? 1 : ((a + '') < (b + '') ? -1 : 0))
return (a + '') > (b + '') ? 1 : ((a + '') < (b + '') ? -1 : 0)
},
function (a, b) {
lastSort.push((b + '') > (a + '') ? 1 : ((b + '') < (a + '') ? -1 : 0))
return (b + '') > (a + '') ? 1 : ((b + '') < (a + '') ? -1 : 0)
}
]
]
const sortArrs = [
[]
]
const sortKeys = [
[]
]
// Store first argument into sortArrs and sortKeys if an Object.
// First Argument should be either a Javascript Array or an Object,
// otherwise function would return FALSE like in PHP
if (Object.prototype.toString.call(arr) === '[object Array]') {
sortArrs[0] = arr
} elseif (arr && typeof arr === 'object') {
for (i in arr) {
if (arr.hasOwnProperty(i)) {
sortKeys[0].push(i)
sortArrs[0].push(arr[i])
}
}
} else {
returnfalse
}
// arrMainLength: Holds the length of the first array.
// All other arrays must be of equal length, otherwise function would return FALSE like in PHP
// sortComponents: Holds 2 indexes per every section of the array
// that can be sorted. As this is the start, the whole array can be sorted.
const arrMainLength = sortArrs[0].length
let sortComponents = [0, arrMainLength]
// Loop through all other arguments, checking lengths and sort flags
// of arrays and adding them to the above variables.
const argl = arguments.length
for (j = 1; j < argl; j++) {
if (Object.prototype.toString.call(arguments[j]) === '[object Array]') {
sortArrs[j] = arguments[j]
sortFlag[j] = 0
if (arguments[j].length !== arrMainLength) {
returnfalse
}
} elseif (arguments[j] && typeofarguments[j] === 'object') {
sortKeys[j] = []
sortArrs[j] = []
sortFlag[j] = 0
for (i inarguments[j]) {
if (arguments[j].hasOwnProperty(i)) {
sortKeys[j].push(i)
sortArrs[j].push(arguments[j][i])
}
}
if (sortArrs[j].length !== arrMainLength) {
returnfalse
}
} elseif (typeofarguments[j] === 'string') {
const lFlag = sortFlag.pop()
// Keep extra parentheses around latter flags check
// to avoid minimization leading to CDATA closer
if (typeof flags[arguments[j]] === 'undefined' ||
((((flags[arguments[j]]) >>> 4) & (lFlag >>> 4)) > 0)) {
returnfalse
}
sortFlag.push(lFlag + flags[arguments[j]])
} else {
returnfalse
}
}
for (i = 0; i !== arrMainLength; i++) {
thingsToSort.push(true)
}
// Sort all the arrays....
for (i in sortArrs) {
if (sortArrs.hasOwnProperty(i)) {
lastSorts = []
tmpArray = []
elIndex = 0
nLastSort = []
lastSort = []
// If there are no sortComponents, then no more sorting is neeeded.
// Copy the array back to the argument.
if (sortComponents.length === 0) {
if (Object.prototype.toString.call(arguments[i]) === '[object Array]') {
args[i] = sortArrs[i]
} else {
for (k inarguments[i]) {
if (arguments[i].hasOwnProperty(k)) {
deletearguments[i][k]
}
}
sal = sortArrs[i].length
for (j = 0, vkey = 0; j < sal; j++) {
vkey = sortKeys[i][j]
args[i][vkey] = sortArrs[i][j]
}
}
sortArrs.splice(i, 1)
sortKeys.splice(i, 1)
continue
}
// Sort function for sorting. Either sorts asc or desc, regular/string or numeric.
let sFunction = sortFunctions[(sortFlag[i] & 3)][((sortFlag[i] & 8) > 0) ? 1 : 0]
// Sort current array.
for (l = 0; l !== sortComponents.length; l += 2) {
tmpArray = sortArrs[i].slice(sortComponents[l], sortComponents[l + 1] + 1)
tmpArray.sort(sFunction)
// Is there a better way to copy an array in Javascript?
lastSorts[l] = [].concat(lastSort)
elIndex = sortComponents[l]
for (g in tmpArray) {
if (tmpArray.hasOwnProperty(g)) {
sortArrs[i][elIndex] = tmpArray[g]
elIndex++
}
}
}
// Duplicate the sorting of the current array on future arrays.
sFunction = sortDuplicator
for (j in sortArrs) {
if (sortArrs.hasOwnProperty(j)) {
if (sortArrs[j] === sortArrs[i]) {
continue
}
for (l = 0; l !== sortComponents.length; l += 2) {
tmpArray = sortArrs[j].slice(sortComponents[l], sortComponents[l + 1] + 1)
// alert(l + ':' + nLastSort);
nLastSort = [].concat(lastSorts[l])
tmpArray.sort(sFunction)
elIndex = sortComponents[l]
for (g in tmpArray) {
if (tmpArray.hasOwnProperty(g)) {
sortArrs[j][elIndex] = tmpArray[g]
elIndex++
}
}
}
}
}
// Duplicate the sorting of the current array on array keys
for (j in sortKeys) {
if (sortKeys.hasOwnProperty(j)) {
for (l = 0; l !== sortComponents.length; l += 2) {
tmpArray = sortKeys[j].slice(sortComponents[l], sortComponents[l + 1] + 1)
nLastSort = [].concat(lastSorts[l])
tmpArray.sort(sFunction)
elIndex = sortComponents[l]
for (g in tmpArray) {
if (tmpArray.hasOwnProperty(g)) {
sortKeys[j][elIndex] = tmpArray[g]
elIndex++
}
}
}
}
}
// Generate the next sortComponents
zlast = null
sortComponents = []
for (j in sortArrs[i]) {
if (sortArrs[i].hasOwnProperty(j)) {
if (!thingsToSort[j]) {
if ((sortComponents.length & 1)) {
sortComponents.push(j - 1)
}
zlast = null
continue
}
if (!(sortComponents.length & 1)) {
if (zlast !== null) {
if (sortArrs[i][j] === zlast) {
sortComponents.push(j - 1)
} else {
thingsToSort[j] = false
}
}
zlast = sortArrs[i][j]
} else {
if (sortArrs[i][j] !== zlast) {
sortComponents.push(j - 1)
zlast = sortArrs[i][j]
}
}
}
}
if (sortComponents.length & 1) {
sortComponents.push(j)
}
if (Object.prototype.toString.call(arguments[i]) === '[object Array]') {
args[i] = sortArrs[i]
} else {
for (j inarguments[i]) {
if (arguments[i].hasOwnProperty(j)) {
deletearguments[i][j]
}
}
sal = sortArrs[i].length
for (j = 0, vkey = 0; j < sal; j++) {
vkey = sortKeys[i][j]
args[i][vkey] = sortArrs[i][j]
}
}
sortArrs.splice(i, 1)
sortKeys.splice(i, 1)
}
}
returntrue
}
[ View on GitHub | Edit on GitHub | Source on GitHub ]

How to use

You you can install via npm install locutus and require it via require('locutus/php/array/array_multisort'). You could also require the array module in full so that you could access array.array_multisort instead.

If you intend to target the browser, you can then use a module bundler such as Parcel, webpack, Browserify, or rollup.js. This can be important because Locutus allows modern JavaScript in the source files, meaning it may not work in all browsers without a build/transpile step. Locutus does transpile all functions to ES5 before publishing to npm.

PHP arrays and JavaScript

Please note that Locutus uses JavaScript objects as substitutes for PHP arrays, they are the closest we can get to this hashtable-like data structure without rolling our own. While many JavaScript implementations preserve the order of object properties, the ECMAScript Language Specification explicitly states that:

The mechanics and order of enumerating the properties is not specified.

So don't use this for anything serious if you rely on the order to be consistent accross platforms.

A community effort

Not unlike Wikipedia, Locutus is an ongoing community effort. Our philosophy follows The McDonald’s Theory. This means that we don't consider it to be a bad thing that many of our functions are first iterations, which may still have their fair share of issues. We hope that these flaws will inspire others to come up with better ideas.

This way of working also means that we don't offer any production guarantees, and recommend to use Locutus inspiration and learning purposes only.

Notes

  • flags: Translation table for sort arguments. Each argument turns on certain bits in the flag byte through addition. bits: HGFE DCBA args: Holds pointer to arguments for reassignment

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
1array_multisort([1, 2, 1, 2, 1, 2], [1, 2, 3, 4, 5, 6])true
2var $characters = {A: 'Edward', B: 'Locke', C: 'Sabin', D: 'Terra', E: 'Edward'} var $jobs = {A: 'Warrior', B: 'Thief', C: 'Monk', D: 'Mage', E: 'Knight'} array_multisort($characters, 'SORT_DESC', 'SORT_STRING', $jobs, 'SORT_ASC', 'SORT_STRING')true
3var $lastnames = [ 'Carter','Adams','Monroe','Tyler','Madison','Kennedy','Adams'] var $firstnames = ['James', 'John' ,'James', 'John', 'James', 'John', 'John'] var $president = [ 39, 6, 5, 10, 4, 35, 2 ] array_multisort($firstnames, 'SORT_DESC', 'SORT_STRING', $lastnames, 'SORT_ASC', 'SORT_STRING', $president, 'SORT_NUMERIC')true

« More PHP array functions


Star