(PECL inclued >= 0.1.0)
Get the inclued data
array inclued_get_data ( void )
Get the inclued data.
Returns:
The inclued data.
Examples:
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); ?>
The above example will output something similar to:
Array
(
[includes] => Array
(
[0] => Array
(
[operation] => include
[op_type] => 2
[filename] => x.php
[opened_path] => /tmp/x.php
[fromfile] => /tmp/z.php
[fromline] => 2
)
)
)
See also:
include -
Please login to continue.