PHP's array_intersect_ukey in JavaScript

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

module.exports = function array_intersect_ukey (arr1) { // eslint-disable-line camelcase
// discuss at: https://locutus.io/php/array_intersect_ukey/
// original by: Brett Zamir (https://brett-zamir.me)
// example 1: var $array1 = {blue: 1, red: 2, green: 3, purple: 4}
// example 1: var $array2 = {green: 5, blue: 6, yellow: 7, cyan: 8}
// example 1: array_intersect_ukey ($array1, $array2, function (key1, key2){ return (key1 === key2 ? 0 : (key1 > key2 ? 1 : -1)); })
// returns 1: {blue: 1, green: 3}
const retArr = {}
const arglm1 = arguments.length - 1
const arglm2 = arglm1 - 1
let cb = arguments[arglm1]
// var cb0 = arguments[arglm2]
let k1 = ''
let i = 1
let k = ''
let arr = {}
const $global = (typeof window !== 'undefined' ? window : global)
cb = (typeof cb === 'string')
? $global[cb]
: (Object.prototype.toString.call(cb) === '[object Array]')
? $global[cb[0]][cb[1]]
: cb
// cb0 = (typeof cb0 === 'string')
// ? $global[cb0]
// : (Object.prototype.toString.call(cb0) === '[object Array]')
// ? $global[cb0[0]][cb0[1]]
// : cb0
arr1keys: for (k1 in arr1) { // eslint-disable-line no-labels
arrs: for (i = 1; i < arglm1; i++) { // eslint-disable-line no-labels
arr = arguments[i]
for (k in arr) {
if (cb(k, k1) === 0) {
if (i === arglm2) {
retArr[k1] = arr1[k1]
}
// If the innermost loop always leads at least once to an equal value,
// continue the loop until done
continue arrs // eslint-disable-line no-labels
}
}
// If it reaches here, it wasn't found in at least one array, so try next value
continue arr1keys // eslint-disable-line no-labels
}
}
return retArr
}
[ 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_intersect_ukey'). You could also require the array module in full so that you could access array.array_intersect_ukey 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.

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 $array1 = {blue: 1, red: 2, green: 3, purple: 4} var $array2 = {green: 5, blue: 6, yellow: 7, cyan: 8} array_intersect_ukey ($array1, $array2, function (key1, key2){ return (key1 === key2 ? 0 : (key1 > key2 ? 1 : -1)); }){blue: 1, green: 3}

« More PHP array functions


Star