mirror of
https://github.com/php/doc-ru.git
synced 2025-08-16 18:22:04 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/ru/trunk@344324 c90b9560-bf6c-de11-be94-00142212c4b1
110 lines
3.0 KiB
XML
110 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<!-- EN-Revision: c0024126d1a5ed05d9e3ff83e5cbff3d8cb5e259 Maintainer: shein Status: ready -->
|
||
<!-- Reviewed: yes -->
|
||
<!-- $Revision$ -->
|
||
<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>
|
||
<row>
|
||
<entry><link linkend="ini.pcre.backtrack-limit">pcre.backtrack_limit</link></entry>
|
||
<entry>"1000000"</entry>
|
||
<entry>PHP_INI_ALL</entry>
|
||
<entry>Доступно с PHP 5.2.0.</entry>
|
||
</row>
|
||
<row>
|
||
<entry><link linkend="ini.pcre.recursion-limit">pcre.recursion_limit</link></entry>
|
||
<entry>"100000"</entry>
|
||
<entry>PHP_INI_ALL</entry>
|
||
<entry>Доступно с PHP 5.2.0.</entry>
|
||
</row>
|
||
<row>
|
||
<entry><link linkend="ini.pcre.jit">pcre.jit</link></entry>
|
||
<entry>"1"</entry>
|
||
<entry>PHP_INI_ALL</entry>
|
||
<entry>Доступно с PHP 7.0.0.</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>integer</type>
|
||
</term>
|
||
<listitem>
|
||
<para>
|
||
Лимит обратных ссылок PCRE. Для PHP < 5.3.7 значение по умолчанию 100000.
|
||
</para>
|
||
</listitem>
|
||
</varlistentry>
|
||
<varlistentry xml:id="ini.pcre.recursion-limit">
|
||
<term>
|
||
<parameter>pcre.recursion_limit</parameter>
|
||
<type>integer</type>
|
||
</term>
|
||
<listitem>
|
||
<para>
|
||
Лимит на рекурсию. Не забывайте о том, что если вы установите
|
||
достаточно высокое значение, то PCRE может превысить размер
|
||
стека (установленный операционной системой) и в конце концов
|
||
вызовет падение PHP.
|
||
</para>
|
||
</listitem>
|
||
</varlistentry>
|
||
<varlistentry xml:id="ini.pcre.jit">
|
||
<term>
|
||
<parameter>pcre.jit</parameter>
|
||
<type>boolean</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
|
||
-->
|