get_required_files

(PHP 4 >= 4.0RC2)

get_required_files --  Vrßtit pole jmen v╣ech soubor∙, kterΘ byly v urΦitΘm skriptu naΦteny pomocφ require_once()

Popis

array get_required_files (void)

Tato funkce vrßtφ asociativnφ pole jmen v╣ech soubor∙, kterΘ byly naΦteny do probφhajφcφho skriptu pomocφ require_once(). Indexy tohoto pole jsou nßzvy soubor∙ pou╛it²ch v require_once() bez p°φpony ".php".

Nßsledujφcφ p°φklad

P°φklad 1. Tisk require()ovan²ch a include()ovan²ch soubor∙

<?php

require_once ("local.php");
require_once ("../inc/global.php");

for ($i=1; $i<5; $i++)
  include "util".$i."php";

  echo "Required_once files\n";
  print_r (get_required_files());

  echo "Included_once files\n";
  print_r (get_included_files());
?>
      
vygeneruje nßsledujφcφ v²stup:

Required_once files
Array
(
  [local] => local.php
  [../inc/global] => /full/path/to/inc/global.php
)

Included_once files
Array
(
    [util1] => util1.php
    [util2] => util2.php
    [util3] => util3.php
    [util4] => util4.php
)
      

Poznßmka: Od verze PHP 4.0.1pl2 tato funkce p°edpoklßdß, ╛e soubory v required_once konΦφ p°φponou ".php", jinΘ p°φpony nefungujφ.

Viz takΘ: require_once(), include_once(), get_included_files()