docs(ru): Updated to English revision

git-svn-id: https://svn.php.net/repository/phpdoc/ru/trunk@350910 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Sergey Panteleev
2020-10-15 05:59:45 +00:00
parent cd544c2706
commit 9ef3aff0d8
5 changed files with 10 additions and 11 deletions

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: ea7caabb165509dbf6796bbf07d697f871c462c2 Maintainer: rjhdby Status: ready -->
<!-- EN-Revision: d3b8e3393716cef21fa6dc370c68ca67890d5575 Maintainer: rjhdby Status: ready -->
<!-- Reviewed: yes Maintainer: sergey -->
<!-- $Revision$ -->
<refentry xml:id="fannconnection.gettoneuron" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: dec1f8445ab2af7fbafef012fb7907ab2cd349b5 Maintainer: rjhdby Status: ready -->
<!-- EN-Revision: 74d39a807a65a666831ac0efd02107af0964e1ae Maintainer: rjhdby Status: ready -->
<!-- Reviewed: yes -->
<!-- $Revision$ -->
<refentry xml:id="function.dl" xmlns="http://docbook.org/ns/docbook">

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: bc35cff061dcf026c8a6f8cb1841301657d0c059 Maintainer: rjhdby Status: ready -->
<!-- EN-Revision: aee38ec9b5c01cf7cb347ca82a70184737a37d7d Maintainer: rjhdby Status: ready -->
<!-- Reviewed: yes Maintainer: lex -->
<sect1 xml:id="opcache.configuration" xmlns="http://docbook.org/ns/docbook">

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: dec1f8445ab2af7fbafef012fb7907ab2cd349b5 Maintainer: rjhdby Status: ready -->
<!-- EN-Revision: 74d39a807a65a666831ac0efd02107af0964e1ae Maintainer: rjhdby Status: ready -->
<!-- Reviewed: yes -->
<!-- $Revision$ -->
<refentry xml:id="function.posix-mkfifo" xmlns="http://docbook.org/ns/docbook">
@ -56,11 +56,7 @@
&return.success;
</para>
</refsect1>
<refsect1 role="notes">
&reftitle.notes;
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: e47d027b6e9bd6b39171d16b7b15176e9d8d8831 Maintainer: shein Status: ready -->
<!-- EN-Revision: 4691b6ddbdf4058b2190e123e31e25af0abd319d Maintainer: shein Status: ready -->
<!-- Reviewed: yes -->
<!-- $Revision$ -->
@ -55,17 +55,20 @@ echo "</pre>\n</body>\n</html>\n";
<title>Работа с API инкрементальной компрессии и декомпрессии, с PHP 7.0.0</title>
<programlisting role="php">
<![CDATA[
<?php
// Выполняем компрессию GZIP:
$deflateContext = deflate_init(ZLIB_ENCODING_GZIP);
$compressed = deflate_add($deflateContext, "Data to compress", ZLIB_NO_FLUSH);
$compressed .= deflate_add($deflateContext, ", more data", ZLIB_NO_FLUSH);
$compressed .= deflate_add($deflateContext, ", and even more data!", ZLIB_FINISH);?>
$compressed .= deflate_add($deflateContext, ", and even more data!", ZLIB_FINISH);
// Выполняем декомпрессию GZIP:
$inflateContext = inflate_init(ZLIB_ENCODING_GZIP);
$uncompressed = inflate_add($inflateContext, $compressed, ZLIB_NO_FLUSH);
$uncompressed .= inflate_add($inflateContext, NULL, ZLIB_FINISH);
echo $uncompressed;
?>
]]>
</programlisting>
&example.outputs;