Welcome to mirror list, hosted at ThFree Co, Russian Federation.

source3.php « _fixture « tests « php-token-stream « phpunit « vendor - github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e42b60f1b347d9a3108f2b3b4f253d77807bcb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
// This file is example#1
// from http://www.php.net/manual/en/function.get-included-files.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";
}