mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-17 21:16:57 +08:00
135 lines
6.5 KiB
HTML
135 lines
6.5 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||
<html>
|
||
<head>
|
||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||
<title>选择记录</title>
|
||
</head>
|
||
<body class="docs"><div id="layout">
|
||
<div id="layout-content"><div id="function.pg-select" class="refentry">
|
||
<div class="refnamediv">
|
||
<h1 class="refname">pg_select</h1>
|
||
<p class="verinfo">(PHP 4 >= 4.3.0, PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">pg_select</span> — <span class="dc-title">
|
||
选择记录
|
||
</span></p>
|
||
|
||
</div>
|
||
|
||
<div class="refsect1 description" id="refsect1-function.pg-select-description">
|
||
<h3 class="title">说明</h3>
|
||
<div class="methodsynopsis dc-description">
|
||
<span class="methodname"><strong>pg_select</strong></span>
|
||
( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$connection</code></span>
|
||
, <span class="methodparam"><span class="type">string</span> <code class="parameter">$table_name</code></span>
|
||
, <span class="methodparam"><span class="type">array</span> <code class="parameter">$assoc_array</code></span>
|
||
[, <span class="methodparam"><span class="type">int</span> <code class="parameter">$options</code><span class="initializer"> = PGSQL_DML_EXEC</span></span>
|
||
] ) : <span class="type"><a href="language.pseudo-types.html#language.types.mixed" class="type mixed">mixed</a></span></div>
|
||
|
||
<p class="para rdfs-comment">
|
||
<span class="function"><strong>pg_select()</strong></span> 根据 <em>assoc_array</em> 数组中的 <em>field=>value</em> 值来选择记录。成功的查询返回和 <em>assoc_array</em> 指定的条件相匹配的包括记录和字段的数组。</p>
|
||
<p class="para">如果指定了 <em>options</em>,<span class="function"><a href="pg_convert.html" class="function">pg_convert()</a></span> 会按照指定选项作用于 <em>assoc_array</em> 之上。
|
||
<div class="warning"><strong class="warning">Warning</strong><p class="simpara">此函数是<em class="emphasis">实验性</em>的。此函数的表象,包括名称及其相关文档都可能在未来的
|
||
PHP 发布版本中未通知就被修改。使用本函数风险自担 。</p></div>
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 parameters" id="refsect1-function.pg-select-parameters">
|
||
<h3 class="title">参数</h3>
|
||
<p class="para">
|
||
<dl>
|
||
|
||
|
||
<dt>
|
||
<code class="parameter">connection</code></dt>
|
||
|
||
<dd>
|
||
|
||
<p class="para">
|
||
PostgreSQL 数据库连接资源。 </p>
|
||
</dd>
|
||
|
||
|
||
|
||
<dt>
|
||
<code class="parameter">table_name</code></dt>
|
||
|
||
<dd>
|
||
|
||
<p class="para">
|
||
Name of the table from which to select rows.
|
||
</p>
|
||
</dd>
|
||
|
||
|
||
|
||
<dt>
|
||
<code class="parameter">assoc_array</code></dt>
|
||
|
||
<dd>
|
||
|
||
<p class="para">
|
||
An <span class="type"><a href="language.types.array.html" class="type array">array</a></span> whose keys are field names in the table <code class="parameter">table_name</code>,
|
||
and whose values are the conditions that a row must meet to be retrieved.
|
||
</p>
|
||
</dd>
|
||
|
||
|
||
|
||
<dt>
|
||
<code class="parameter">options</code></dt>
|
||
|
||
<dd>
|
||
|
||
<p class="para">
|
||
Any number of <strong><code>PGSQL_CONV_FORCE_NULL</code></strong>,
|
||
<strong><code>PGSQL_DML_NO_CONV</code></strong>,
|
||
<strong><code>PGSQL_DML_EXEC</code></strong>,
|
||
<strong><code>PGSQL_DML_ASYNC</code></strong> or
|
||
<strong><code>PGSQL_DML_STRING</code></strong> combined. If <strong><code>PGSQL_DML_STRING</code></strong> is part of the
|
||
<code class="parameter">options</code> then query string is returned.
|
||
</p>
|
||
</dd>
|
||
|
||
|
||
</dl>
|
||
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 returnvalues" id="refsect1-function.pg-select-returnvalues">
|
||
<h3 class="title">返回值</h3>
|
||
<p class="para">
|
||
成功时返回 <strong><code>TRUE</code></strong>, 或者在失败时返回 <strong><code>FALSE</code></strong>。 Returns <span class="type"><a href="language.types.string.html" class="type string">string</a></span> if <strong><code>PGSQL_DML_STRING</code></strong> is passed
|
||
via <code class="parameter">options</code>.
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 examples" id="refsect1-function.pg-select-examples">
|
||
<h3 class="title">范例</h3>
|
||
<p class="para">
|
||
<div class="example" id="example-2514">
|
||
<p><strong>Example #1 <span class="function"><strong>pg_select()</strong></span> example</strong></p>
|
||
<div class="example-contents">
|
||
<div class="phpcode"><pre><span style="color: #000000">
|
||
<span style="color: #0000BB"><?php <br /> $db </span><span style="color: #007700">= </span><span style="color: #0000BB">pg_connect</span><span style="color: #007700">(</span><span style="color: #DD0000">'dbname=foo'</span><span style="color: #007700">);<br /> </span><span style="color: #FF8000">// This is safe, since $_POST is converted automatically<br /> </span><span style="color: #0000BB">$rec </span><span style="color: #007700">= </span><span style="color: #0000BB">pg_select</span><span style="color: #007700">(</span><span style="color: #0000BB">$db</span><span style="color: #007700">, </span><span style="color: #DD0000">'post_log'</span><span style="color: #007700">, </span><span style="color: #0000BB">$_POST</span><span style="color: #007700">);<br /> if (</span><span style="color: #0000BB">$rec</span><span style="color: #007700">) {<br /> echo </span><span style="color: #DD0000">"Records selected\n"</span><span style="color: #007700">;<br /> </span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$rec</span><span style="color: #007700">);<br /> } else {<br /> echo </span><span style="color: #DD0000">"User must have sent wrong inputs\n"</span><span style="color: #007700">;<br /> }<br /></span><span style="color: #0000BB">?></span>
|
||
</span>
|
||
</pre></div>
|
||
</div>
|
||
|
||
</div>
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 seealso" id="refsect1-function.pg-select-seealso">
|
||
<h3 class="title">参见</h3>
|
||
<p class="para">
|
||
<ul class="simplelist">
|
||
<li class="member"><span class="function"><a href="pg_convert.html" class="function" rel="rdfs-seeAlso">pg_convert()</a> - 将关联的数组值转换为适合 SQL 语句的格式。</span></li>
|
||
</ul>
|
||
</p>
|
||
</div>
|
||
|
||
</div></div></div></body></html> |