8 lines
208 B
PHP
8 lines
208 B
PHP
<?php
|
|
|
|
|
|
|
|
echo '[c] file: ' . __FILE__ . ', line: ' . __LINE__ . ', dir: ' . __DIR__ . PHP_EOL;
|
|
require_once 'more/a.php';
|
|
echo '[c] file: ' . __FILE__ . ', line: ' . __LINE__ . ', dir: ' . __DIR__ . PHP_EOL;
|