mirror of
https://github.com/macintoshplus/doc-fr.git
synced 2026-03-26 01:42:09 +01:00
git-svn-id: https://svn.php.net/repository/phpdoc/fr/trunk@351363 c90b9560-bf6c-de11-be94-00142212c4b1
142 lines
3.5 KiB
XML
142 lines
3.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: fc8735b2e20d775deaca34a680d728c83153cd21 Maintainer: yannick Status: ready -->
|
|
<!-- Reviewed: yes -->
|
|
|
|
<refentry xml:id="wrappers.data" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" role="noversion">
|
|
<refnamediv>
|
|
<refname>data://</refname>
|
|
<refpurpose>Données (RFC 2397)</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description"><!-- {{{ -->
|
|
&reftitle.description;
|
|
<para>
|
|
Le gestionnaire de flux <filename>data:</filename>
|
|
(<link xlink:href="&url.rfc;2397">RFC 2397</link>).
|
|
</para>
|
|
</refsect1><!-- }}} -->
|
|
|
|
<refsect1 role="usage"> <!-- {{{ -->
|
|
&reftitle.usage;
|
|
<itemizedlist>
|
|
<listitem><simpara><filename>data://text/plain;base64,</filename></simpara></listitem>
|
|
</itemizedlist>
|
|
</refsect1> <!-- }}} -->
|
|
|
|
<refsect1 role="options"><!-- {{{ -->
|
|
&reftitle.options;
|
|
<para>
|
|
<table>
|
|
<title>Résumé du gestionnaire</title>
|
|
<tgroup cols="2">
|
|
<thead>
|
|
<row>
|
|
<entry>Attribut</entry>
|
|
<entry>Supporté</entry>
|
|
</row>
|
|
</thead>
|
|
<tbody>
|
|
<row>
|
|
<entry>Restreint par <link linkend="ini.allow-url-fopen">allow_url_fopen</link></entry>
|
|
<entry>Oui</entry>
|
|
</row>
|
|
<row>
|
|
<entry>Restreint par <link linkend="ini.allow-url-include">allow_url_include</link></entry>
|
|
<entry>Oui</entry>
|
|
</row>
|
|
<row>
|
|
<entry>Autorise la lecture</entry>
|
|
<entry>Oui</entry>
|
|
</row>
|
|
<row>
|
|
<entry>Autorise l'écriture</entry>
|
|
<entry>Non</entry>
|
|
</row>
|
|
<row>
|
|
<entry>Autorise l'ajout</entry>
|
|
<entry>Non</entry>
|
|
</row>
|
|
<row>
|
|
<entry>Autorise la lecture et l'écriture simultanément</entry>
|
|
<entry>Non</entry>
|
|
</row>
|
|
<row>
|
|
<entry>Support de la fonction <function>stat</function></entry>
|
|
<entry>Non</entry>
|
|
</row>
|
|
<row>
|
|
<entry>Support de la fonction <function>unlink</function></entry>
|
|
<entry>Non</entry>
|
|
</row>
|
|
<row>
|
|
<entry>Support de la fonction <function>rename</function></entry>
|
|
<entry>Non</entry>
|
|
</row>
|
|
<row>
|
|
<entry>Support de la fonction <function>mkdir</function></entry>
|
|
<entry>Non</entry>
|
|
</row>
|
|
<row>
|
|
<entry>Support de la fonction <function>rmdir</function></entry>
|
|
<entry>Non</entry>
|
|
</row>
|
|
</tbody>
|
|
</tgroup>
|
|
</table>
|
|
</para>
|
|
</refsect1> <!-- }}} -->
|
|
|
|
<refsect1 role="examples"><!-- {{{ -->
|
|
&reftitle.examples;
|
|
<example>
|
|
<title>Affichage d'un contenu data://</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
// Affiche "I love PHP"
|
|
echo file_get_contents('data://text/plain;base64,SSBsb3ZlIFBIUAo=');
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
|
|
<example>
|
|
<title>Récupération du type de média</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$fp = fopen('data://text/plain;base64,', 'r');
|
|
$meta = stream_get_meta_data($fp);
|
|
|
|
// Affiche "text/plain"
|
|
echo $meta['mediatype'];
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</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
|
|
-->
|