javascript:
// функция подразумевает, что список файлов хранится в переменной библиотеки php/js
function get_included_files() {
// Возвращает массив имен включенных в скрипт файлов
//
// + original by: Michael White (http://crestidg.com)
var cur_file = {};
cur_file[window.location.href] = 1;
if(!this.__php_js) this.__php_js = {};
if(!this.__php_js.includes) this.__php_js.includes = cur_file;
var includes = new Array();
var i = 0;
for(var key in this.__php_js.includes){
includes[i] = key;
i++;
}
return includes;
}
//Примеры:
get_included_files();
// ['http://kevin.vanzonneveld.net/pj_tester.php']