JavaScript runkit_superglobals
!No description available for runkit_superglobals. @php.js developers: Please update the function summary text file.
1 2 3 4 56 7 8 9 1011 12 13 14 1516 17 18 19 20 | function runkit_superglobals () { // !No description available for runkit_superglobals. @php.js developers: Please update the function summary text file. // // version: 910.813 // discuss at: http://phpjs.org/functions/runkit_superglobals // + original by: Brett Zamir (http://brett-zamir.me) // % note 1: You must manually define the superglobals to be able to use them. // % note 2: Another alternative (though you can't reflect on them with this function) is to use import_request_variables() // * example 1: runkit_superglobals(); // * returns 1: [] var superglobal = {}, p='', arr=[]; var superglobals = ['$_GET', '$_POST', '$_REQUEST', '$_COOKIE', '$_SESSION', '$_SERVER', '$_ENV', '$_FILES']; for (var i=0; i < superglobals.length; i++) { superglobal = this.window[superglobals[i]]; for (p in superglobal) { arr.push(superglobal[p]); } } return arr; } |
Examples
Running
1 | runkit_superglobals(); |
Should return
1 | [] |
Dependencies
No dependencies, you can use this function standalone.
Open syntax issues
php.js uses JsLint to help us keep our code consistent and prevent some common bugs.
Eventually we want all code to pass or at least take into consideration most fixes suggested by JsLint, following this JsLint configuration we’ve decided on.
Authors
Thanks to the following developers, you get to have runkit_superglobals goodness in JavaScript.
No comments yet. Be the first!
spread the word:
Use any PHP function in JavaScript
These kind folks have already donated: Anonymous and Shawn Houser.
<your name here>