PHP - Manual: inclued_get_data
2025-10-31
(PECL inclued >= 0.1.0)
inclued_get_data — Get the inclued data
Get the inclued data.
此函数没有参数。
The inclued data.
Example #1 inclued_get_data() example
See the inclued examples section for ways to create graphs with this data.
<?php 
include 'x.php';
$clue = inclued_get_data();
print_r($clue);
?>
以上例程的输出类似于:
Array
(
  [includes] => Array
    (
      [0] => Array
        (
          [operation] => include
          [op_type] => 2
          [filename] => x.php
          [opened_path] => /tmp/x.php
          [fromfile] => /tmp/z.php
          [fromline] => 2
        )
    )
)
 add a note
 add a note
  官方地址:https://www.php.net/manual/en/function.inclued-get-data.php