国产精品成人VA在线观看,亚洲日韩在线中文字幕综合,亚洲AV电影天堂男人的天堂,久久人人爽人人爽人人av东京热

News新聞

業(yè)界新聞動(dòng)態(tài)、技術(shù)前沿
Who are we?

您的位置:首頁      樂道系統(tǒng)FAQ      PHP判斷文件是否被引入的方法get_included_files用法示例

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

標(biāo)簽: 發(fā)布日期:2016-11-29 00:00:00 244

本文實(shí)例講述了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";
}
?>