我正在使用核心php作为应用程序,因为我有一些视图,类和javascript文件。
查看结构:
include('header.php'); //header file is included with config file
include('class.php');
<body>
include('fotter.php'); //footer file
当通过重新定位调用视图时,它很好。
问题: 当我想通过ajax调用包含类的一些函数时,我需要通过检查ajax调用在类上面包含配置文件。
如何在ajax调用期间使用preincluded文件本身。 请帮帮....