array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'it', ), 'this' => array ( 0 => 'function.stream-resolve-include-path.php', 1 => 'stream_resolve_include_path', 2 => 'Resolve filename against the include path', ), 'up' => array ( 0 => 'ref.stream.php', 1 => 'Stream Funzioni', ), 'prev' => array ( 0 => 'function.stream-register-wrapper.php', 1 => 'stream_register_wrapper', ), 'next' => array ( 0 => 'function.stream-select.php', 1 => 'stream_select', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/stream/functions/stream-resolve-include-path.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

stream_resolve_include_path

(PHP 5 >= 5.3.2, PHP 7, PHP 8)

stream_resolve_include_path Resolve filename against the include path

Descrizione

stream_resolve_include_path(string $filename): string|false

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

Elenco dei parametri

filename

The filename to resolve.

Valori restituiti

Returns a string containing the resolved absolute filename, o false in caso di fallimento.

Esempi

Example #1 stream_resolve_include_path() example

Basic usage example.

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

Il precedente esempio visualizzerĂ  qualcosa simile a:

string(22) "/var/www/html/test.php"