Files
doc-fr/appendices/migration74/windows-support.xml
dem b24d2544e2 Fix some typos
Update appendices/migration71/other-changes.xml

Co-authored-by: George Peter Banyard <7906688+Girgias@users.noreply.github.com>

Update appendices/migration72/new-features.xml

Co-authored-by: George Peter Banyard <7906688+Girgias@users.noreply.github.com>

Update appendices/migration71/other-changes.xml

Co-authored-by: George Peter Banyard <7906688+Girgias@users.noreply.github.com>

Update appendices/migration72/new-features.xml

Co-authored-by: George Peter Banyard <7906688+Girgias@users.noreply.github.com>
2021-04-28 12:51:10 +01:00

97 lines
3.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: c517cdf9196d0b6374b1112af979768c7cb391e9 Maintainer: jbnahan Status: ready -->
<!-- Reviewed: no -->
<sect1 xml:id="migration74.windows-support" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Gestion de Windows</title>
<sect2 xml:id="migration74.windows-support.configure">
<title>Drapeaux <command>configure</command></title>
<para>
<command>configure</command> supporte les variables d'environnement <literal>CFLAGS</literal> et <literal>LDFLAGS</literal>.
</para>
</sect2>
<sect2 xml:id="migration74.windows-support.other">
<title>Traitement CTRL</title>
<para>
CTRL+C et CTRL+BREAK sur la console peuvent être prises en définissant un
gestionnaire avec la fonction <function>sapi_windows_set_ctrl_handler</function>.
</para>
<para>
L'option "create_process_group" peut être passée à <function>proc_open</function>
sur Windows. Elle est nécessaire si le processus enfant est censé gérer les
événements CTRL.
</para>
</sect2>
<sect2 xml:id="migration74.windows-support.opcache">
<title>OPcache</title>
<para>
OPcache prend désormais en charge un nombre arbitraire de caches séparés par
utilisateur via la directive INI <literal>opcache.cache-id</literal>. Tous les
processus avec le même identifiant de cache et le même utilisateur partagent
une instance OPcache.
</para>
</sect2>
<sect2 xml:id="migration74.windows-support.stat">
<title>stat</title>
<para>
L'implémentation de la stat a été refactorisée.
</para>
<itemizedlist>
<listitem>
<simpara>
Un numéro d'inode est livré et est basé sur l'index de fichier NTFS.
</simpara>
</listitem>
<listitem>
<simpara>
Le numéro de l'appareil est maintenant basé sur le numéro de série du volume.
</simpara>
</listitem>
</itemizedlist>
<para>
Notez que les deux valeurs sont dérivées du système et fournies tel qu'il est
sur les systèmes 64 bits. Sur les systèmes 32 bits, ces valeurs peuvent dépasser
l'entier 32 bits dans PHP, donc ils sont faux.
</para>
</sect2>
<sect2 xml:id="migration74.windows-support.sqlite3">
<title>libsqlite3</title>
<para>
libsqlite3 n'est plus compilé statiquement en
<filename>php_sqlite3.dll</filename> et <filename>php_pdo_sqlite.dll</filename>,
mais est plutôt disponible en tant que <filename>libsqlite3.dll</filename>.
Se référer aux instructions d'installation de
<link linkend="sqlite3.installation">SQLite3</link> et
<link linkend="ref.pdo-sqlite.installation">PDO_SQLITE</link>, respectivement.
</para>
</sect2>
</sect1>
<!-- 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
-->