2010-03-28 22:10:10 +00:00
<?xml version="1.0" encoding="utf-8"?>
2009-07-11 09:08:43 +00:00
<!-- $Revision$ -->
2007-06-20 22:25:43 +00:00
<refentry xml:id= "function.stream-resolve-include-path" xmlns= "http://docbook.org/ns/docbook" >
2007-01-28 02:27:25 +00:00
<refnamediv >
<refname > stream_resolve_include_path</refname>
<refpurpose >
2009-12-24 17:44:16 +00:00
Resolve filename against the include path
2007-01-28 02:27:25 +00:00
</refpurpose>
</refnamediv>
<refsect1 role= "description" >
&reftitle.description;
<methodsynopsis >
<type > string</type> <methodname > stream_resolve_include_path</methodname>
<methodparam > <type > string</type> <parameter > filename</parameter> </methodparam>
2011-02-11 14:16:57 +00:00
<!-- <methodparam choice="opt"><type>resource</type><parameter>context</parameter></methodparam> -->
2007-01-28 02:27:25 +00:00
</methodsynopsis>
2009-12-09 01:51:53 +00:00
<para >
2012-04-15 21:45:34 +00:00
Resolve <parameter > filename</parameter> against the include path according to the same rules as <function > fopen</function> /<function > include</function> .
2009-12-09 01:51:53 +00:00
</para>
2007-01-28 02:27:25 +00:00
</refsect1>
2009-12-09 01:51:53 +00:00
<refsect1 role= "parameters" >
&reftitle.parameters;
<para >
<variablelist >
<varlistentry >
2011-03-31 18:55:39 +00:00
<term > <parameter > filename</parameter> </term>
2009-12-09 01:51:53 +00:00
<listitem >
<para >
The filename to resolve.
</para>
</listitem>
</varlistentry>
2011-02-11 14:16:57 +00:00
<!--
2009-12-09 01:51:53 +00:00
<varlistentry >
<term > <parameter > context</parameter> </term>
<listitem >
<para >
A valid context resource created with <function > stream_context_create</function> .
</para>
</listitem>
</varlistentry>
2011-02-11 14:16:57 +00:00
-->
2009-12-09 01:51:53 +00:00
</variablelist>
</para>
</refsect1>
<refsect1 role= "returnvalues" >
&reftitle.returnvalues;
<para >
2011-03-31 18:55:39 +00:00
Returns a <type > string</type> containing the resolved absolute filename, &return.falseforfailure; .
2009-12-09 01:51:53 +00:00
</para>
</refsect1>
<refsect1 role= "examples" >
&reftitle.examples;
<para >
<example >
<title > <function > stream_resolve_include_path</function> example</title>
<para >
Basic usage example.
</para>
<programlisting role= "php" >
< ![CDATA[
< ?php
var_dump(stream_resolve_include_path("test.php"));
?>
]]>
</programlisting>
&example.outputs.similar;
<screen >
< ![CDATA[
2011-03-31 18:55:39 +00:00
string(22) "/var/www/html/test.php"
2009-12-09 01:51:53 +00:00
]]>
</screen>
</example>
</para>
</refsect1>
2010-04-07 17:09:10 +00:00
<!-- FIXME PHP_6
2009-12-24 14:53:13 +00:00
<refsect1 role= "changelog" >
&reftitle.changelog;
<para >
<informaltable >
<tgroup cols= "2" >
<thead >
<row >
<entry > &Version; </entry>
<entry > &Description; </entry>
</row>
</thead>
<tbody >
<row >
<entry > 6.0.0</entry>
<entry >
The <parameter > context</parameter> parameter was added.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</para>
</refsect1>
2010-04-07 17:09:10 +00:00
-->
2009-12-09 01:51:53 +00:00
</refentry>
2007-01-28 02:27:25 +00:00
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
2009-09-25 07:04:39 +00:00
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
2007-01-28 02:27:25 +00:00
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->