UNPKG

phpjs

Version:

php.js offers community built php functions in javascript

72 lines (64 loc) 2.47 kB
--- layout: page title: "JavaScript require_once function" comments: true sharing: true footer: true alias: - /functions/view/require_once:503 - /functions/view/require_once - /functions/view/503 - /functions/require_once:503 - /functions/503 --- <!-- Generated by Rakefile:build --> A JavaScript equivalent of PHP's require_once {% codeblock language/require_once.js lang:js https://raw.github.com/kvz/phpjs/master/functions/language/require_once.js raw on github %} function require_once (filename) { // http://kevin.vanzonneveld.net // + original by: Michael White (http://getsprink.com) // + input by: Brett Zamir (http://brett-zamir.me) // + bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) // + bugfixed by: Brett Zamir (http://brett-zamir.me) // % note 1: Uses global: php_js to keep track of included files (though private static variable in namespaced version) // - depends on: require // * example 1: require_once('http://www.phpjs.org/js/phpjs/_supporters/pj_test_supportfile_2.js'); // * returns 1: true var cur_file = {}; cur_file[this.window.location.href] = 1; // save include state for reference by include_once and require_once() // BEGIN STATIC try { // We can't try to access on window, since it might not exist in some environments, and if we use "this.window" // we risk adding another copy if different window objects are associated with the namespaced object php_js_shared; // Will be private static variable in namespaced version or global in non-namespaced // version since we wish to share this across all instances } catch (e) { php_js_shared = {}; } // END STATIC if (!php_js_shared.includes) { php_js_shared.includes = cur_file; } if (!php_js_shared.includes[filename]) { if (this.require(filename)) { return true; } } else { return true; } return false; } {% endcodeblock %} - [view on github](https://github.com/kvz/phpjs/blob/master/functions/language/require_once.js) - [edit on github](https://github.com/kvz/phpjs/edit/master/functions/language/require_once.js) ### Example 1 This code {% codeblock lang:js example %} require_once('http://www.phpjs.org/js/phpjs/_supporters/pj_test_supportfile_2.js'); {% endcodeblock %} Should return {% codeblock lang:js returns %} true {% endcodeblock %} ### Other PHP functions in the language extension {% render_partial _includes/custom/language.html %}