PHP's get_defined_functions in JavaScript

How to use

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

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
1function test_in_array (array, p_val) {for(var i = 0, l = array.length; i < l; i++) {if (array[i] === p_val) return true} return false} var $funcs = get_defined_functions() var $found = test_in_array($funcs, 'get_defined_functions') var $result = $foundtrue

Notes

  • Test case 1: If get_defined_functions can find itself in the defined functions, it worked :)

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

module.exports = function get_defined_functions() {
// discuss at: https://locutus.io/php/get_defined_functions/
// original by: Brett Zamir (https://brett-zamir.me)
// improved by: Brett Zamir (https://brett-zamir.me)
// note 1: Test case 1: If get_defined_functions can find
// note 1: itself in the defined functions, it worked :)
// example 1: function test_in_array (array, p_val) {for(var i = 0, l = array.length; i < l; i++) {if (array[i] === p_val) return true} return false}
// example 1: var $funcs = get_defined_functions()
// example 1: var $found = test_in_array($funcs, 'get_defined_functions')
// example 1: var $result = $found
// returns 1: true
// test: skip-1

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

let i = ''
const arr = []
const already = {}

for (i in $global) {
try {
if (typeof $global[i] === 'function') {
if (!already[i]) {
already[i] = 1
arr.push(i)
}
} else if (typeof $global[i] === 'object') {
for (const j in $global[i]) {
if (typeof $global[j] === 'function' && $global[j] && !already[j]) {
already[j] = 1
arr.push(j)
}
}
}
} catch (e) {
// Some objects in Firefox throw exceptions when their
// properties are accessed (e.g., sessionStorage)
}
}

return arr
}

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 funchand functions


Star