The example of this article describes the usage of get_included_files, the method of PHP to determine whether a file has been introduced. Share it with everyone for your reference, the details are as follows:
<?php // 本文件是 abc.php include 'test1.php'; include_once 'test2.php'; require 'test3.php'; require_once 'test4.php'; $included_files = get_included_files(); foreach ($included_files as $filename) { echo "$filename\n"; } ?>
Result:
The above routine will output:
abc.php test1.php test2.php test3.php test4.php
View the loading file of phpcms
D:\xampp\htdocs\duanzu\index.php D:\xampp\htdocs\duanzu\phpcms\base.php D:\xampp\htdocs\duanzu\phpcms\libs\functions\global.func.php D:\xampp\htdocs\duanzu\phpcms\libs\functions\extention.func.php D:\xampp\htdocs\duanzu\phpcms\libs\functions\autoload\plugin.func.php D:\xampp\htdocs\duanzu\phpcms\libs\functions\autoload\video.func.php D:\xampp\htdocs\duanzu\caches\configs\system.php D:\xampp\htdocs\duanzu\phpcms\libs\classes\application.class.php D:\xampp\htdocs\duanzu\phpcms\libs\classes\param.class.php D:\xampp\htdocs\duanzu\caches\configs\route.php D:\xampp\htdocs\duanzu\phpcms\modules\home\common.php D:\xampp\htdocs\duanzu\phpcms\model\user_model.class.php D:\xampp\htdocs\duanzu\phpcms\libs\classes\model.class.php D:\xampp\htdocs\duanzu\phpcms\libs\classes\db_factory.class.php D:\xampp\htdocs\duanzu\caches\configs\database.php D:\xampp\htdocs\duanzu\phpcms\libs\classes\db_mysqli.class.php D:\xampp\htdocs\duanzu\phpcms\libs\classes\sendsms.class.php D:\xampp\htdocs\duanzu\phpcms\plugin\Taobao\TopSdk.php D:\xampp\htdocs\duanzu\phpcms\plugin\Taobao\Autoloader.php
Be able to spy on the loading process of the project!
The above is the content of the get_included_files usage example of PHP's method to determine whether a file has been introduced. For more related content, please pay attention to the PHP Chinese website (m.sbmmt.com)!