Use PHP functions in JavaScript

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: 1008.1718
    // 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;
}
external links: original PHP docs | raw js source

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.

Comments

Add Comment
Use:
[CODE]
your_stuff('here');
[/CODE]
for proper code formatting
By submitting code here you are allowing us to use it in php.js hence dual licensing it under the MIT and GPL licenses

No comments yet. Be the first!


Contribute a New function

More functions

In this category

runkit_class_adopt
runkit_class_emancipate
runkit_function_add
runkit_function_copy
runkit_function_redefine
runkit_function_remove
runkit_function_rename
runkit_import
runkit_method_add
runkit_method_copy
runkit_method_redefine
runkit_method_remove
runkit_method_rename
» runkit_superglobals

Support us

spread the word:


Use any PHP function in JavaScript


These kind folks have already donated: @HalfWinter, Paulo Freitas, Andros Peña Romo, Nitin Gupta, @nikosdion, Anonymous, Anonymous and Shawn Houser.
<your name here>

Click here to lend your support to: phpjs and make a donation at www.pledgie.com !