1. 首页
  2. 数据库
  3. 其它
  4. PHP判断文件是否被引入的方法get_included_files用法示例

PHP判断文件是否被引入的方法get_included_files用法示例

上传者: 2021-02-01 08:38:44上传 PDF文件 38KB 热度 15次
本文实例讲述了PHP判断文件是否被引入的方法get_included_files用法。分享给大家供大家参考,具体如下: <?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; } ?> 结果: 以上例程会输
用户评论