mirror of
https://github.com/php/doc-zh.git
synced 2026-03-26 16:12:19 +01:00
git-svn-id: https://svn.php.net/repository/phpdoc/zh/trunk@97440 c90b9560-bf6c-de11-be94-00142212c4b1
74 lines
2.2 KiB
XML
Executable File
74 lines
2.2 KiB
XML
Executable File
<?xml version="1.0" encoding="gb2312"?>
|
||
<!-- $Revision: 1.2 $ -->
|
||
<!-- $Author: dallas $ -->
|
||
<!-- EN-Revision: 1.5 Maintainer: dallas Status: ready -->
|
||
<refentry id='function.pg-select'>
|
||
<refnamediv>
|
||
<refname>pg_select</refname>
|
||
<refpurpose>
|
||
选择记录
|
||
</refpurpose>
|
||
</refnamediv>
|
||
<refsect1>
|
||
<title>说明</title>
|
||
<methodsynopsis>
|
||
<type>array</type><methodname>pg_select</methodname>
|
||
<methodparam><type>resource</type><parameter>connection</parameter></methodparam>
|
||
<methodparam><type>string</type><parameter>table_name</parameter></methodparam>
|
||
<methodparam><type>array</type><parameter>assoc_array</parameter></methodparam>
|
||
<methodparam choice="opt"><type>int</type><parameter>options</parameter></methodparam>
|
||
</methodsynopsis>
|
||
<para>
|
||
<function>pg_select</function> 根据 <literal>assoc_array</literal> 数组中的 <literal>field=>value</literal> 值来选择记录。成功的查询返回和 <literal>assoc_array</literal> 指定的条件相匹配的包括记录和字段的数组。如果指定了 <literal>options</literal>,<function>pg_convert</function> 会按照指定选项作用于 <literal>assoc_array</literal> 之上。
|
||
</para>
|
||
<example>
|
||
<title>pg_select</title>
|
||
<programlisting role="php">
|
||
<![CDATA[
|
||
<?php
|
||
$db = pg_connect ('dbname=foo');
|
||
// This is safe, since $_POST is converted automatically
|
||
$rec = pg_select($db, 'post_log', $_POST);
|
||
if ($rec) {
|
||
echo "Records selected\n";
|
||
var_dump($rec);
|
||
}
|
||
else {
|
||
echo "User must have sent wrong inputs\n";
|
||
}
|
||
?>
|
||
]]>
|
||
</programlisting>
|
||
</example>
|
||
<note>
|
||
<para>
|
||
本函数为试验性质。
|
||
</para>
|
||
</note>
|
||
<para>
|
||
参见 <function>pg_convert</function>。
|
||
</para>
|
||
</refsect1>
|
||
</refentry>
|
||
|
||
<!-- 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:"../../../../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
|
||
-->
|