Stream Функции
PHP Manual

stream_resolve_include_path

(PHP 5 >= 5.3.2)

stream_resolve_include_path Resolve filename against the include path

Описание

string stream_resolve_include_path ( string $filename )

Resolve filename against the include path according to the same rules as fopen()/include() does.

Список параметров

string

The filename to resolve.

Возвращаемые значения

On success, the resolved absolute filename is returned. On failure, FALSE is returned.

Примеры

Пример #1 stream_resolve_include_path() example

Basic usage example.

<?php
var_dump
(stream_resolve_include_path("test.php"));
?>

Результатом выполнения данного примера будет что-то подобное:

unicode(10) "/var/www/html/test.php"


Stream Функции
PHP Manual