1
0
mirror of https://github.com/php/doc-ru.git synced 2026-03-23 23:32:16 +01:00
Files
archived-doc-ru/reference/pcre/ini.xml
Gina Peter Banyard a19b1f8a7f Apply revchecked skipped commit c60943fefc4ff8950460e76d714a463437cf0eb2
Replace PHP_INI_* with INI_* constants
2024-01-26 13:58:08 +00:00

108 lines
3.0 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: a0ae28d3bc85f927c22649ebd9a590b921534b7d Maintainer: shein Status: ready -->
<!-- Reviewed: no -->
<section xml:id="pcre.configuration" xmlns="http://docbook.org/ns/docbook">
&reftitle.runtime;
&extension.runtime;
<para>
<table>
<title>Опции конфигурации PCRE</title>
<tgroup cols="4">
<thead>
<row>
<entry>&Name;</entry>
<entry>&Default;</entry>
<entry>&Changeable;</entry>
<entry>&Changelog;</entry>
</row>
</thead>
<tbody xml:id="pcre.configuration.list">
<row>
<entry><link linkend="ini.pcre.backtrack-limit">pcre.backtrack_limit</link></entry>
<entry>"1000000"</entry>
<entry><constant>INI_ALL</constant></entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.pcre.recursion-limit">pcre.recursion_limit</link></entry>
<entry>"100000"</entry>
<entry><constant>INI_ALL</constant></entry>
<entry></entry>
</row>
<row>
<entry><link linkend="ini.pcre.jit">pcre.jit</link></entry>
<entry>"1"</entry>
<entry><constant>INI_ALL</constant></entry>
<entry></entry>
</row>
</tbody>
</tgroup>
</table>
&ini.php.constants;
</para>
&ini.descriptions.title;
<para>
<variablelist>
<varlistentry xml:id="ini.pcre.backtrack-limit">
<term>
<parameter>pcre.backtrack_limit</parameter>
<type>int</type>
</term>
<listitem>
<para>
Лимит обратных ссылок PCRE. Для PHP &lt; 5.3.7 значение по умолчанию 100000.
</para>
</listitem>
</varlistentry>
<varlistentry xml:id="ini.pcre.recursion-limit">
<term>
<parameter>pcre.recursion_limit</parameter>
<type>int</type>
</term>
<listitem>
<para>
Лимит на рекурсию. Не забывайте о том, что если вы установите
достаточно высокое значение, то PCRE может превысить размер
стека (установленный операционной системой) и в конце концов
вызовет падение PHP.
</para>
</listitem>
</varlistentry>
<varlistentry xml:id="ini.pcre.jit">
<term>
<parameter>pcre.jit</parameter>
<type>bool</type>
</term>
<listitem>
<para>
Будет ли использоваться JIT-компиляция PCRE.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</section>
<!-- 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
-->