11 lines
217 B
PHP
11 lines
217 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;
|