PHP Doku:: Get the inclued data - function.inclued-get-data.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDas Verhalten von PHP beeinflussenInclusion hierarchy viewerinclued Funktioneninclued_get_data

Ein Service von Reinhard Neidl - Webprogrammierung.

inclued Funktionen

<<inclued Funktionen

PHP-Optionen und -Informationen>>

inclued_get_data

(PECL inclued >= 0.1.0)

inclued_get_dataGet the inclued data

Beschreibung

array inclued_get_data ( void )

Get the inclued data.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

The inclued data.

Beispiele

Beispiel #1 inclued_get_data() example

See the inclued examples section for ways to create a graphs with this data.

<?php 
include 'x.php';

$clue inclued_get_data();

print_r($clue);
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

Array
(
  [includes] => Array
    (
      [0] => Array
        (
          [operation] => include
          [op_type] => 2
          [filename] => x.php
          [opened_path] => /tmp/x.php
          [fromfile] => /tmp/z.php
          [fromline] => 2
        )
    )
)

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)