mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-17 21:16:57 +08:00
110 lines
7.1 KiB
HTML
110 lines
7.1 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.mysql-fetch-row" class="refentry">
|
||
<div class="refnamediv">
|
||
<h1 class="refname">mysql_fetch_row</h1>
|
||
<p class="verinfo">(PHP 4, PHP 5)</p><p class="refpurpose"><span class="refname">mysql_fetch_row</span> — <span class="dc-title">从结果集中取得一行作为枚举数组</span></p>
|
||
|
||
</div>
|
||
<div class="refsect1 description" id="refsect1-function.mysql-fetch-row-description">
|
||
<h3 class="title">说明</h3>
|
||
<div class="methodsynopsis dc-description">
|
||
<span class="methodname"><strong>mysql_fetch_row</strong></span>
|
||
( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$result</code></span>
|
||
) : <span class="type">array</span></div>
|
||
|
||
<p class="para rdfs-comment">
|
||
返回根据所取得的行生成的数组,如果没有更多行则返回 <strong><code>FALSE</code></strong>。
|
||
</p>
|
||
<p class="para">
|
||
<span class="function"><strong>mysql_fetch_row()</strong></span>
|
||
从和指定的结果标识关联的结果集中取得一行数据并作为数组返回。每个结果的列储存在一个数组的单元中,偏移量从 0 开始。
|
||
</p>
|
||
<p class="para">
|
||
依次调用 <span class="function"><strong>mysql_fetch_row()</strong></span>
|
||
将返回结果集中的下一行,如果没有更多行则返回 <strong><code>FALSE</code></strong>。
|
||
</p>
|
||
<p class="para">
|
||
参见 <span class="function"><a href="mysql_fetch_array.html" class="function">mysql_fetch_array()</a></span>,<span class="function"><a href="mysql_fetch_assoc.html" class="function">mysql_fetch_assoc()</a></span>,<span class="function"><a href="mysql_fetch_object.html" class="function">mysql_fetch_object()</a></span>,<span class="function"><a href="mysql_data_seek.html" class="function">mysql_data_seek()</a></span>,<span class="function"><a href="mysql_fetch_lengths.html" class="function">mysql_fetch_lengths()</a></span> 和
|
||
<span class="function"><a href="mysql_result.html" class="function">mysql_result()</a></span>。
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 parameters" id="refsect1-function.mysql-fetch-row-parameters">
|
||
<h3 class="title">参数</h3>
|
||
<p class="para">
|
||
<dl>
|
||
|
||
<dt>
|
||
<code class="parameter">
|
||
result</code></dt>
|
||
<dd>
|
||
<p class="para"><span class="type"><a href="language.types.resource.html" class="type resource">resource</a></span>
|
||
型的结果集。此结果集来自对 <span class="function"><a href="mysql_query.html" class="function">mysql_query()</a></span>
|
||
的调用。</p></dd>
|
||
|
||
</dl>
|
||
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 returnvalues" id="refsect1-function.mysql-fetch-row-returnvalues">
|
||
<h3 class="title">返回值</h3>
|
||
<p class="para">
|
||
Returns an numerical array of strings that corresponds to the fetched row, or
|
||
<strong><code>FALSE</code></strong> if there are no more rows.
|
||
</p>
|
||
<p class="para">
|
||
<span class="function"><strong>mysql_fetch_row()</strong></span> fetches one row of data from
|
||
the result associated with the specified result identifier. The
|
||
row is returned as an array. Each result column is stored in an
|
||
array offset, starting at offset 0.
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 examples" id="refsect1-function.mysql-fetch-row-examples">
|
||
<h3 class="title">范例</h3>
|
||
<p class="para">
|
||
<div class="example" id="example-2144">
|
||
<p><strong>Example #1 Fetching one row with <span class="function"><strong>mysql_fetch_row()</strong></span></strong></p>
|
||
<div class="example-contents">
|
||
<div class="phpcode"><pre><span style="color: #000000">
|
||
<span style="color: #0000BB"><?php<br />$result </span><span style="color: #007700">= </span><span style="color: #0000BB">mysql_query</span><span style="color: #007700">(</span><span style="color: #DD0000">"SELECT id,email FROM people WHERE id = '42'"</span><span style="color: #007700">);<br />if (!</span><span style="color: #0000BB">$result</span><span style="color: #007700">) {<br /> echo </span><span style="color: #DD0000">'Could not run query: ' </span><span style="color: #007700">. </span><span style="color: #0000BB">mysql_error</span><span style="color: #007700">();<br /> exit;<br />}<br /></span><span style="color: #0000BB">$row </span><span style="color: #007700">= </span><span style="color: #0000BB">mysql_fetch_row</span><span style="color: #007700">(</span><span style="color: #0000BB">$result</span><span style="color: #007700">);<br /><br />echo </span><span style="color: #0000BB">$row</span><span style="color: #007700">[</span><span style="color: #0000BB">0</span><span style="color: #007700">]; </span><span style="color: #FF8000">// 42<br /></span><span style="color: #007700">echo </span><span style="color: #0000BB">$row</span><span style="color: #007700">[</span><span style="color: #0000BB">1</span><span style="color: #007700">]; </span><span style="color: #FF8000">// the email value<br /></span><span style="color: #0000BB">?></span>
|
||
</span>
|
||
</pre></div>
|
||
</div>
|
||
|
||
</div>
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 notes" id="refsect1-function.mysql-fetch-row-notes">
|
||
<h3 class="title">注释</h3>
|
||
<blockquote class="note"><p><strong class="note">Note</strong>: <span class="simpara">此函数将 NULL 字段设置为 PHP <strong><code>NULL</code></strong> 值。</span></p></blockquote>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 seealso" id="refsect1-function.mysql-fetch-row-seealso">
|
||
<h3 class="title">参见</h3>
|
||
<p class="para">
|
||
<ul class="simplelist">
|
||
<li class="member"><span class="function"><a href="mysql_fetch_array.html" class="function" rel="rdfs-seeAlso">mysql_fetch_array()</a> - 从结果集中取得一行作为关联数组,或数字数组,或二者兼有</span></li>
|
||
<li class="member"><span class="function"><a href="mysql_fetch_assoc.html" class="function" rel="rdfs-seeAlso">mysql_fetch_assoc()</a> - 从结果集中取得一行作为关联数组</span></li>
|
||
<li class="member"><span class="function"><a href="mysql_fetch_object.html" class="function" rel="rdfs-seeAlso">mysql_fetch_object()</a> - 从结果集中取得一行作为对象</span></li>
|
||
<li class="member"><span class="function"><a href="mysql_data_seek.html" class="function" rel="rdfs-seeAlso">mysql_data_seek()</a> - 移动内部结果的指针</span></li>
|
||
<li class="member"><span class="function"><a href="mysql_fetch_lengths.html" class="function" rel="rdfs-seeAlso">mysql_fetch_lengths()</a> - 取得结果集中每个输出的长度</span></li>
|
||
<li class="member"><span class="function"><a href="mysql_result.html" class="function" rel="rdfs-seeAlso">mysql_result()</a> - 取得结果数据</span></li>
|
||
</ul>
|
||
</p>
|
||
</div>
|
||
|
||
</div></div></div></body></html> |