mirror of
https://github.com/macintoshplus/doc-fr.git
synced 2026-03-25 17:32:07 +01:00
git-svn-id: https://svn.php.net/repository/phpdoc/fr/trunk@351753 c90b9560-bf6c-de11-be94-00142212c4b1
138 lines
2.9 KiB
XML
138 lines
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: e41806c30bf6975e452c0d4ce35ab0984c2fa68c Maintainer: jsgoupil Status: ready -->
|
|
<!-- Reviewed: no -->
|
|
|
|
<refentry xml:id="function.dio-stat" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>dio_stat</refname>
|
|
<refpurpose>
|
|
Lit des informations sur le fichier
|
|
</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>
|
|
<function>dio_stat</function> retourne les informations sur le
|
|
fichier.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>fd</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
La ressource de fichier retournée par <function>dio_open</function>.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Retourne un tableau associatif avec les clés suivantes :
|
|
<itemizedlist>
|
|
<listitem>
|
|
<para>
|
|
"device" : device
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"inode" : inode
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"mode" : mode
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"nlink" : nombre de liens
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"uid" : user id
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"gid" : group id
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"device_type" : type de device (si inode device)
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"size" : taille totale en octets
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"blocksize" : taille du bloc
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"blocks" : nombre de blocs alloués
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"atime" : date du dernier accès
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"mtime" : date de dernière modification
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
"ctime" : date de dernier changement
|
|
</para>
|
|
</listitem>
|
|
</itemizedlist>
|
|
En cas d'erreur, <function>dio_stat</function> retourne &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
|
|
-->
|