uTools-Manuals/docs/php/dbase_replace_record.html
2019-04-28 19:00:34 +08:00

162 lines
8.7 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>Replaces a record in a database</title>
</head>
<body class="docs"><div id="layout">
<div id="layout-content"><div id="function.dbase-replace-record" class="refentry">
<div class="refnamediv">
<h1 class="refname">dbase_replace_record</h1>
<p class="verinfo">(PHP 5 &lt; 5.3.0, dbase 5, dbase 7)</p><p class="refpurpose"><span class="refname">dbase_replace_record</span> &mdash; <span class="dc-title">Replaces a record in a database</span></p>
</div>
<div class="refsect1 description" id="refsect1-function.dbase-replace-record-description">
<h3 class="title">说明</h3>
<div class="methodsynopsis dc-description">
<span class="methodname"><strong>dbase_replace_record</strong></span>
( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$dbase_identifier</code></span>
, <span class="methodparam"><span class="type">array</span> <code class="parameter">$record</code></span>
, <span class="methodparam"><span class="type">int</span> <code class="parameter">$record_number</code></span>
) : <span class="type">bool</span></div>
<p class="para rdfs-comment">
Replaces the given record in the database with the given data.
</p>
</div>
<div class="refsect1 parameters" id="refsect1-function.dbase-replace-record-parameters">
<h3 class="title">参数</h3>
<p class="para">
<dl>
<dt>
<code class="parameter">dbase_identifier</code></dt>
<dd>
<p class="para">
The database link identifier, returned by <span class="function"><a href="dbase_open.html" class="function">dbase_open()</a></span>
or <span class="function"><a href="dbase_create.html" class="function">dbase_create()</a></span>.
</p>
</dd>
<dt>
<code class="parameter">record</code></dt>
<dd>
<p class="para">
An indexed array of data. The number of items must be equal to the
number of fields in the database, otherwise
<span class="function"><strong>dbase_replace_record()</strong></span> will fail.
</p>
<blockquote class="note"><p><strong class="note">Note</strong>:
<p class="para">
If you&#039;re using <span class="function"><a href="dbase_get_record.html" class="function">dbase_get_record()</a></span> return value for this
parameter, remember to reset the key named <em>deleted</em>.
</p>
</p></blockquote>
</dd>
<dt>
<code class="parameter">record_number</code></dt>
<dd>
<p class="para">
An integer which spans from 1 to the number of records in the database
(as returned by <span class="function"><a href="dbase_numrecords.html" class="function">dbase_numrecords()</a></span>).
</p>
</dd>
</dl>
</p>
</div>
<div class="refsect1 returnvalues" id="refsect1-function.dbase-replace-record-returnvalues">
<h3 class="title">返回值</h3>
<p class="para">
成功时返回 <strong><code>TRUE</code></strong> 或者在失败时返回 <strong><code>FALSE</code></strong>
</p>
</div>
<div class="refsect1 changelog" id="refsect1-function.dbase-replace-record-changelog">
<h3 class="title">更新日志</h3>
<table class="doctable informaltable">
<thead>
<tr>
<th>版本</th>
<th>说明</th>
</tr>
</thead>
<tbody class="tbody">
<tr>
<td>dbase 7.0.0</td>
<td>
<code class="parameter">dbase_identifier</code> is now a <span class="type"><a href="language.types.resource.html" class="type resource">resource</a></span>
instead of an <span class="type"><a href="language.types.integer.html" class="type int">int</a></span>.
</td>
</tr>
</tbody>
</table>
</div>
<div class="refsect1 examples" id="refsect1-function.dbase-replace-record-examples">
<h3 class="title">范例</h3>
<p class="para">
<div class="example" id="example-1193">
<p><strong>Example #1 Updating a record in the database</strong></p>
<div class="example-contents">
<div class="phpcode"><pre><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br /><br /></span><span style="color: #FF8000">//&nbsp;open&nbsp;in&nbsp;read-write&nbsp;mode<br /></span><span style="color: #0000BB">$db&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">dbase_open</span><span style="color: #007700">(</span><span style="color: #DD0000">'/tmp/test.dbf'</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">2</span><span style="color: #007700">);<br /><br />if&nbsp;(</span><span style="color: #0000BB">$db</span><span style="color: #007700">)&nbsp;{<br />&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;gets&nbsp;the&nbsp;old&nbsp;row<br />&nbsp;&nbsp;</span><span style="color: #0000BB">$row&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">dbase_get_record_with_names</span><span style="color: #007700">(</span><span style="color: #0000BB">$db</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">1</span><span style="color: #007700">);<br />&nbsp;&nbsp;<br />&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;remove&nbsp;the&nbsp;'deleted'&nbsp;entry<br />&nbsp;&nbsp;</span><span style="color: #007700">unset(</span><span style="color: #0000BB">$row</span><span style="color: #007700">[</span><span style="color: #DD0000">'deleted'</span><span style="color: #007700">]);<br />&nbsp;&nbsp;<br />&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;Update&nbsp;the&nbsp;date&nbsp;field&nbsp;with&nbsp;the&nbsp;current&nbsp;timestamp<br />&nbsp;&nbsp;</span><span style="color: #0000BB">$row</span><span style="color: #007700">[</span><span style="color: #DD0000">'date'</span><span style="color: #007700">]&nbsp;=&nbsp;</span><span style="color: #0000BB">date</span><span style="color: #007700">(</span><span style="color: #DD0000">'Ymd'</span><span style="color: #007700">);<br />&nbsp;&nbsp;<br />&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;convert&nbsp;the&nbsp;row&nbsp;to&nbsp;an&nbsp;indexed&nbsp;array<br />&nbsp;&nbsp;</span><span style="color: #0000BB">$row&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">array_values</span><span style="color: #007700">(</span><span style="color: #0000BB">$row</span><span style="color: #007700">);<br /><br />&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;Replace&nbsp;the&nbsp;record<br />&nbsp;&nbsp;</span><span style="color: #0000BB">dbase_replace_record</span><span style="color: #007700">(</span><span style="color: #0000BB">$db</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$row</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">1</span><span style="color: #007700">);<br />&nbsp;&nbsp;</span><span style="color: #0000BB">dbase_close</span><span style="color: #007700">(</span><span style="color: #0000BB">$db</span><span style="color: #007700">);<br />}<br /><br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</pre></div>
</div>
</div>
</p>
</div>
<div class="refsect1 notes" id="refsect1-function.dbase-replace-record-notes">
<h3 class="title">注释</h3>
<blockquote class="note"><p><strong class="note">Note</strong>:
<p class="para">
Boolean fields result in an <span class="type"><a href="language.types.integer.html" class="type integer">integer</a></span> element value
(<em>0</em> or <em>1</em>) when retrieved via
<span class="function"><a href="dbase_get_record.html" class="function">dbase_get_record()</a></span> or
<span class="function"><a href="dbase_get_record_with_names.html" class="function">dbase_get_record_with_names()</a></span>. If they are written back,
this results in the value becoming <em>0</em>, so care has to be
taken to properly adjust the values.
</p>
</p></blockquote>
</div>
<div class="refsect1 seealso" id="refsect1-function.dbase-replace-record-seealso">
<h3 class="title">参见</h3>
<p class="para">
<ul class="simplelist">
<li class="member"><span class="function"><a href="dbase_add_record.html" class="function" rel="rdfs-seeAlso">dbase_add_record()</a> - Adds a record to a database</span></li>
<li class="member"><span class="function"><a href="dbase_delete_record.html" class="function" rel="rdfs-seeAlso">dbase_delete_record()</a> - Deletes a record from a database</span></li>
</ul>
</p>
</div>
</div></div></div></body></html>