mirror of
https://github.com/php/doc-it.git
synced 2026-04-30 02:33:13 +02:00
416679c8a5
This only updates files which have an empty diff between the two different revisions
132 lines
2.9 KiB
XML
132 lines
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- EN-Revision: e41806c30bf6975e452c0d4ce35ab0984c2fa68c Maintainer: darvina Status: ready -->
|
|
<refentry xml:id="function.dio-stat" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>dio_stat</refname>
|
|
<refpurpose>
|
|
Restituisce le informazioni relative al file indicato da fd
|
|
</refpurpose>
|
|
</refnamediv>
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>array</type><methodname>dio_stat</methodname>
|
|
<methodparam><type>resource</type><parameter>fd</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
La funzione <function>dio_stat</function> restituisce le informazioni
|
|
sul dato descrittore di file.
|
|
</para>
|
|
</refsect1>
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>fd</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
Descrittore di file restituito da <function>dio_open</function>.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Restituisce un array associativo contenente le seguenti chiavi:
|
|
<itemizedlist>
|
|
<listitem>
|
|
<para>
|
|
"device" - device
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"inode" - inode
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"mode" - mode
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"nlink" - numero di link
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"uid" - user id
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"gid" - group id
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"device_type" - device type (se inode device)
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"size" - total size in bytes
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"blocksize" - blocksize
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"blocks" - dimensione totale in byte
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"atime" - data dell'ultimo accesso
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"mtime" - data dell'ultima modifica
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"ctime" - data dell'ultimo cambiamento
|
|
</para>
|
|
</listitem>
|
|
</itemizedlist>
|
|
Se si verifica un errore la funzione <function>dio_stat</function> restituisce &null;.
|
|
</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
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
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
|
|
-->
|