In some case like this, you can't use `realpath()` or `file_exists()` without resolve its path.
Example:
file.php
subfolder/
..|- included.php
..|- subfolder/
.........|- another-included.php
file.php contents:
```
<?php
var_dump(file_exists('subfolder/included.php'));include 'subfolder/included.php';
?>
```
subfolder/included.php contents:
```
<?php
var_dump(file_exists('subfolder/another-included.php'));var_dump(file_exists(stream_resolve_include_path('subfolder/another-included.php')));include 'subfolder/another-included.php';?>
```
subfolder/subfolder/another-included.php contents:
```
<?php
echo 'Hello world';
?>
```