mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 08:28:54 +00:00
92 lines
2.8 KiB
XML
92 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
|
|
<sect1 xml:id="migration74.windows-support" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<title>Windows Support</title>
|
|
|
|
<sect2 xml:id="migration74.windows-support.configure">
|
|
<title><command>configure</command> flags</title>
|
|
<para>
|
|
<command>configure</command> now regards additional <literal>CFLAGS</literal> and <literal>LDFLAGS</literal> set as environment
|
|
variables.
|
|
</para>
|
|
</sect2>
|
|
|
|
<sect2 xml:id="migration74.windows-support.other">
|
|
<title>CTRL handling</title>
|
|
<para>
|
|
CTRL+C and CTRL+BREAK on console can be caught by setting a handler function
|
|
with <function>sapi_windows_set_ctrl_handler</function>.
|
|
</para>
|
|
<para>
|
|
<function>proc_open</function> on Windows can be passed a
|
|
"create_process_group" option. It is required if the child
|
|
process is supposed to handle CTRL events.
|
|
</para>
|
|
</sect2>
|
|
|
|
<sect2 xml:id="migration74.windows-support.opcache">
|
|
<title>OPcache</title>
|
|
<para>
|
|
OPcache now supports an arbitrary number of separate caches per user via the
|
|
INI directive <literal>opcache.cache_id</literal>.
|
|
All processes with the same cache ID and user share an OPcache instance.
|
|
</para>
|
|
</sect2>
|
|
|
|
<sect2 xml:id="migration74.windows-support.stat">
|
|
<title>stat</title>
|
|
<para>
|
|
The stat implementation has been refactored.
|
|
</para>
|
|
<itemizedlist>
|
|
<listitem>
|
|
<simpara>
|
|
An inode number is delivered and is based on the NTFS file index.
|
|
</simpara>
|
|
</listitem>
|
|
<listitem>
|
|
<simpara>
|
|
The device number is now based on the volume serial number.
|
|
</simpara>
|
|
</listitem>
|
|
</itemizedlist>
|
|
<para>
|
|
Note that both values are derived from the system and provided as-is on 64-bit
|
|
systems. On 32-bit systems, these values might overflow the 32-bit integer in
|
|
PHP, so they're fake.
|
|
</para>
|
|
</sect2>
|
|
|
|
<sect2 xml:id="migration74.windows-support.sqlite3">
|
|
<title>libsqlite3</title>
|
|
<para>
|
|
libsqlite3 is no longer compiled statically into <filename>php_sqlite3.dll</filename>
|
|
and <filename>php_pdo_sqlite.dll</filename>, but rather available as <filename>libsqlite3.dll</filename>.
|
|
Refer to the installation instructions for <link linkend="sqlite3.installation">SQLite3</link> and
|
|
<link linkend="ref.pdo-sqlite.installation">PDO_SQLITE</link>, respectively.
|
|
</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
|
|
-->
|