mirror of
https://github.com/php/doc-zh.git
synced 2026-03-23 22:52:08 +01:00
Sync outdated files (#1009)
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision$ -->
|
||||
<!-- EN-Revision: ce98b568f85353c4bf263133f09c4db9294833f9 Maintainer: dallas Status: ready -->
|
||||
<!-- CREDITS: mowangjuanzi -->
|
||||
<!-- EN-Revision: e309a62b16c7dc48883b1b426bb8c15918488681 Maintainer: dallas Status: ready -->
|
||||
<!-- CREDITS: mowangjuanzi, Luffy -->
|
||||
<refentry xml:id="function.imagedestroy" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>imagedestroy</refname>
|
||||
@@ -49,6 +49,12 @@
|
||||
</row>
|
||||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>8.5.0</entry>
|
||||
<entry>
|
||||
此函数已被弃用。
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>8.0.0</entry>
|
||||
<entry>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision$ -->
|
||||
<!-- EN-Revision: fbb5e68567180d47b639b57adf196cc01889f4c6 Maintainer: yuanyuqiang Status: ready -->
|
||||
<!-- EN-Revision: e309a62b16c7dc48883b1b426bb8c15918488681 Maintainer: yuanyuqiang Status: ready -->
|
||||
<!-- CREDITS: mowangjuanzi, Luffy -->
|
||||
<refentry xml:id="mysqli.options" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
@@ -69,6 +69,12 @@
|
||||
<entry><constant>MYSQLI_OPT_LOCAL_INFILE</constant></entry>
|
||||
<entry>启用或禁用 <literal>LOAD LOCAL INFILE</literal></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><constant>MYSQLI_OPT_LOAD_DATA_LOCAL_DIR</constant></entry>
|
||||
<entry>
|
||||
用于 <literal>LOAD DATA LOCAL INFILE</literal> 的目录。
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><constant>MYSQLI_INIT_COMMAND</constant></entry>
|
||||
<entry>连接到 MySQL 服务器后要执行的命令</entry>
|
||||
@@ -123,6 +129,18 @@
|
||||
是否验证服务器证书。
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><constant>MYSQLI_OPT_CAN_HANDLE_EXPIRED_PASSWORDS</constant></entry>
|
||||
<entry>
|
||||
客户端是否接受过期密码。
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>1</literal></entry>
|
||||
<entry>
|
||||
是否使用网络通信压缩。
|
||||
</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
</tgroup>
|
||||
</table>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision$ -->
|
||||
<!-- EN-Revision: b9af4bd4eef9a501e9a6787d5d8998bce9f37dfb Maintainer: 谢毅斌 Status: ready -->
|
||||
<!-- EN-Revision: e309a62b16c7dc48883b1b426bb8c15918488681 Maintainer: 谢毅斌 Status: ready -->
|
||||
<!-- CREDITS: mowangjuanzi, Luffy -->
|
||||
<refentry xml:id="mysqli.real-connect" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision$ -->
|
||||
<!-- EN-Revision: c2eca73ef79ebe78cebb34053e41b565af504c4f Maintainer: HonestQiao Status: ready -->
|
||||
<!-- CREDITS: mowangjuanzi -->
|
||||
<!-- EN-Revision: e309a62b16c7dc48883b1b426bb8c15918488681 Maintainer: HonestQiao Status: ready -->
|
||||
<!-- CREDITS: mowangjuanzi, Luffy -->
|
||||
<refentry xml:id="function.pg-copy-from" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>pg_copy_from</refname>
|
||||
@@ -16,7 +16,7 @@
|
||||
<type>bool</type><methodname>pg_copy_from</methodname>
|
||||
<methodparam><type>PgSql\Connection</type><parameter>connection</parameter></methodparam>
|
||||
<methodparam><type>string</type><parameter>table_name</parameter></methodparam>
|
||||
<methodparam><type>array</type><parameter>rows</parameter></methodparam>
|
||||
<methodparam><type class="union"><type>array</type><type>Traversable</type></type><parameter>rows</parameter></methodparam>
|
||||
<methodparam choice="opt"><type>string</type><parameter>separator</parameter><initializer>"\t"</initializer></methodparam>
|
||||
<methodparam choice="opt"><type>string</type><parameter>null_as</parameter><initializer>"\\\\N"</initializer></methodparam>
|
||||
</methodsynopsis>
|
||||
@@ -48,7 +48,7 @@
|
||||
<term><parameter>rows</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
要复制 <type>array</type> 中的数据到 <parameter>table_name</parameter>。<parameter>rows</parameter>
|
||||
要复制 <type>iterable</type> 中的数据到 <parameter>table_name</parameter>。<parameter>rows</parameter>
|
||||
中的每个值都成为 <parameter>table_name</parameter> 中的一行。<parameter>rows</parameter>
|
||||
中的每个值都应该用字符串分割以插入到每个字段。值应该换行终止。
|
||||
</para>
|
||||
@@ -92,6 +92,13 @@
|
||||
</row>
|
||||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>8.5.0</entry>
|
||||
<entry>
|
||||
<parameter>rows</parameter> 现在是 <type>iterable</type> 类型。
|
||||
之前是 <type>array</type> 类型。
|
||||
</entry>
|
||||
</row>
|
||||
&pgsql.changelog.connection-object;
|
||||
</tbody>
|
||||
</tgroup>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision$ -->
|
||||
<!-- EN-Revision: 927c3d9ef797f572473754d0ed8488d34986f0ca Maintainer: yuanyuqiang Status: ready -->
|
||||
<!-- EN-Revision: e309a62b16c7dc48883b1b426bb8c15918488681 Maintainer: yuanyuqiang Status: ready -->
|
||||
<!-- CREDITS: mowangjuanzi, Luffy -->
|
||||
<refentry xml:id="function.session-cache-limiter" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
@@ -72,9 +72,9 @@
|
||||
<entry>
|
||||
<programlisting role="header">
|
||||
<![CDATA[
|
||||
Expires:(根据 session.cache_expire 的设定计算得出)
|
||||
Cache-Control: public, max-age=(根据 session.cache_expire 的设定计算得出)
|
||||
Last-Modified:(会话最后保存时间)
|
||||
Expires: (sometime in the future, according session.cache_expire)
|
||||
Cache-Control: public, max-age=(sometime in the future, according to session.cache_expire)
|
||||
Last-Modified: (the timestamp of the current script)
|
||||
]]>
|
||||
</programlisting>
|
||||
</entry>
|
||||
@@ -84,8 +84,8 @@ Last-Modified:(会话最后保存时间)
|
||||
<entry>
|
||||
<programlisting role="header">
|
||||
<![CDATA[
|
||||
Cache-Control: private, max-age=(根据 session.cache_expire 的设定计算得出)
|
||||
Last-Modified: (会话最后保存时间)
|
||||
Cache-Control: private, max-age=(session.cache_expire in the future)
|
||||
Last-Modified: (the timestamp of the current script)
|
||||
]]>
|
||||
</programlisting>
|
||||
</entry>
|
||||
@@ -96,8 +96,8 @@ Last-Modified: (会话最后保存时间)
|
||||
<programlisting role="header">
|
||||
<![CDATA[
|
||||
Expires: Thu, 19 Nov 1981 08:52:00 GMT
|
||||
Cache-Control: private, max-age=(根据 session.cache_expire 的设定计算得出)
|
||||
Last-Modified: (会话最后保存时间)
|
||||
Cache-Control: private, max-age=(session.cache_expire in the future)
|
||||
Last-Modified: (the timestamp of the current script)
|
||||
]]>
|
||||
</programlisting>
|
||||
</entry>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision$ -->
|
||||
<!-- EN-Revision: b9af4bd4eef9a501e9a6787d5d8998bce9f37dfb Maintainer: daijie Status: ready -->
|
||||
<!-- EN-Revision: e309a62b16c7dc48883b1b426bb8c15918488681 Maintainer: daijie Status: ready -->
|
||||
<!-- CREDITS: mowangjuanzi, Luffy -->
|
||||
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.printf">
|
||||
<refnamediv>
|
||||
|
||||
Reference in New Issue
Block a user