2010-03-28 22:10:10 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-07-11 07:01:54 +00:00
|
|
|
<!-- $Revision$ -->
|
2006-03-09 14:15:41 +00:00
|
|
|
<!-- Generated by xml_proto.php v2.3. Found in /scripts directory of phpdoc. -->
|
2007-06-20 22:25:43 +00:00
|
|
|
<refentry xml:id="function.finfo-file" xmlns="http://docbook.org/ns/docbook">
|
2006-03-09 14:15:41 +00:00
|
|
|
<refnamediv>
|
|
|
|
<refname>finfo_file</refname>
|
|
|
|
<refpurpose>Return information about a file</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
|
|
&reftitle.description;
|
2010-09-23 11:21:00 +00:00
|
|
|
<para>&style.procedural;</para>
|
|
|
|
<methodsynopsis role="procedural">
|
2006-03-09 14:15:41 +00:00
|
|
|
<type>string</type><methodname>finfo_file</methodname>
|
|
|
|
<methodparam><type>resource</type><parameter>finfo</parameter></methodparam>
|
2010-05-03 17:10:04 +00:00
|
|
|
<methodparam><type>string</type><parameter>file_name</parameter><initializer>&null;</initializer></methodparam>
|
2009-01-09 17:08:52 +00:00
|
|
|
<methodparam choice="opt"><type>int</type><parameter>options</parameter><initializer>FILEINFO_NONE</initializer></methodparam>
|
2010-05-03 17:10:04 +00:00
|
|
|
<methodparam choice="opt"><type>resource</type><parameter>context</parameter><initializer>&null;</initializer></methodparam>
|
2006-03-09 14:15:41 +00:00
|
|
|
</methodsynopsis>
|
2010-09-23 11:21:00 +00:00
|
|
|
<para>&style.oop;</para>
|
2006-03-09 14:15:41 +00:00
|
|
|
<classsynopsis>
|
|
|
|
<ooclass><classname>finfo</classname></ooclass>
|
2010-09-23 11:21:00 +00:00
|
|
|
<methodsynopsis role="oop">
|
2006-03-09 14:15:41 +00:00
|
|
|
<type>string</type><methodname>file</methodname>
|
2010-05-03 17:10:04 +00:00
|
|
|
<methodparam><type>string</type><parameter>file_name</parameter><initializer>&null;</initializer></methodparam>
|
2009-01-09 17:08:52 +00:00
|
|
|
<methodparam choice="opt"><type>int</type><parameter>options</parameter><initializer>FILEINFO_NONE</initializer></methodparam>
|
2010-05-03 17:10:04 +00:00
|
|
|
<methodparam choice="opt"><type>resource</type><parameter>context</parameter><initializer>&null;</initializer></methodparam>
|
2006-03-09 14:15:41 +00:00
|
|
|
</methodsynopsis>
|
|
|
|
</classsynopsis>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
This function is used to get information about a file.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
|
|
&reftitle.parameters;
|
|
|
|
<para>
|
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>finfo</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
Fileinfo resource returned by <function>finfo_open</function>.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>file_name</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
Name of a file to be checked.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>options</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
One or disjunction of more <link linkend="fileinfo.constants">Fileinfo
|
|
|
|
constants</link>.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>context</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
For a description of <literal>contexts</literal>, refer to <xref
|
|
|
|
linkend="ref.stream"/>.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
|
|
&reftitle.returnvalues;
|
|
|
|
<para>
|
|
|
|
Returns a textual description of the contents of the
|
|
|
|
<parameter>filename</parameter> argument, or &false; if an error occurred.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="examples">
|
|
|
|
&reftitle.examples;
|
|
|
|
<para>
|
|
|
|
<example>
|
|
|
|
<title>A <function>finfo_file</function> example</title>
|
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
2009-07-27 03:16:32 +00:00
|
|
|
$finfo = finfo_open(FILEINFO_MIME_TYPE); // return mime type ala mimetype extension
|
2006-03-09 14:15:41 +00:00
|
|
|
foreach (glob("*") as $filename) {
|
|
|
|
echo finfo_file($finfo, $filename) . "\n";
|
|
|
|
}
|
|
|
|
finfo_close($finfo);
|
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
&example.outputs.similar;
|
|
|
|
<screen>
|
|
|
|
<![CDATA[
|
|
|
|
text/html
|
|
|
|
image/gif
|
|
|
|
application/vnd.ms-excel
|
|
|
|
]]>
|
|
|
|
</screen>
|
|
|
|
</example>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="seealso">
|
|
|
|
&reftitle.seealso;
|
|
|
|
<para>
|
|
|
|
<simplelist>
|
|
|
|
<member><function>finfo_buffer</function></member>
|
|
|
|
</simplelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
</refentry>
|
|
|
|
|
|
|
|
<!-- 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"
|
2006-03-09 14:15:41 +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
|
|
|
|
-->
|