mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-17 21:16:57 +08:00
124 lines
7.6 KiB
HTML
124 lines
7.6 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>Fetch row as object</title>
|
|
</head>
|
|
<body class="docs"><div id="layout">
|
|
<div id="layout-content"><div id="function.mssql-fetch-object" class="refentry">
|
|
<div class="refnamediv">
|
|
<h1 class="refname">mssql_fetch_object</h1>
|
|
<p class="verinfo">(PHP 4, PHP 5, PECL odbtp >= 1.1.1)</p><p class="refpurpose"><span class="refname">mssql_fetch_object</span> — <span class="dc-title">Fetch row as object</span></p>
|
|
|
|
</div>
|
|
|
|
<div id="function.mssql-fetch-object-refsynopsisdiv">
|
|
<div class="warning"><strong class="warning">Warning</strong>
|
|
|
|
<p class="para">
|
|
This function was <em class="emphasis">REMOVED</em> in PHP 7.0.0.
|
|
</p>
|
|
<p class="para">
|
|
Alternatives to this function include:
|
|
</p>
|
|
|
|
<ul class="simplelist">
|
|
<li class="member"><span class="function"><a href="pdostatement.fetchobject.html" class="function">PDOStatement::fetchObject()</a></span></li>
|
|
<li class="member"><span class="function"><a href="sqlsrv_fetch_object.html" class="function">sqlsrv_fetch_object()</a></span></li>
|
|
<li class="member"><span class="function"><a href="odbc_fetch_object.html" class="function">odbc_fetch_object()</a></span></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="refsect1 description" id="refsect1-function.mssql-fetch-object-description">
|
|
<h3 class="title">说明</h3>
|
|
<div class="methodsynopsis dc-description">
|
|
<span class="methodname"><strong>mssql_fetch_object</strong></span>
|
|
( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$result</code></span>
|
|
) : <span class="type">object</span></div>
|
|
|
|
<p class="para rdfs-comment">
|
|
<span class="function"><strong>mssql_fetch_object()</strong></span> is similar to
|
|
<span class="function"><a href="mssql_fetch_array.html" class="function">mssql_fetch_array()</a></span>, with one difference - an
|
|
object is returned, instead of an array. Indirectly, that means
|
|
that you can only access the data by the field names, and not by
|
|
their offsets (numbers are illegal property names).
|
|
</p>
|
|
<p class="para">
|
|
Speed-wise, the function is identical to
|
|
<span class="function"><a href="mssql_fetch_array.html" class="function">mssql_fetch_array()</a></span>, and almost as quick as
|
|
<span class="function"><a href="mssql_fetch_row.html" class="function">mssql_fetch_row()</a></span> (the difference is
|
|
insignificant).
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 parameters" id="refsect1-function.mssql-fetch-object-parameters">
|
|
<h3 class="title">参数</h3>
|
|
<p class="para">
|
|
<dl>
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">result</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
The result resource that is being evaluated. This result comes from a
|
|
call to <span class="function"><a href="mssql_query.html" class="function">mssql_query()</a></span>.
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
</dl>
|
|
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 returnvalues" id="refsect1-function.mssql-fetch-object-returnvalues">
|
|
<h3 class="title">返回值</h3>
|
|
<p class="para">
|
|
Returns an object with properties that correspond to the fetched row, or
|
|
<strong><code>FALSE</code></strong> if there are no more rows.
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 examples" id="refsect1-function.mssql-fetch-object-examples">
|
|
<h3 class="title">范例</h3>
|
|
<p class="para">
|
|
<div class="example" id="example-1755">
|
|
<p><strong>Example #1 <span class="function"><strong>mssql_fetch_object()</strong></span> example</strong></p>
|
|
<div class="example-contents">
|
|
<div class="phpcode"><pre><span style="color: #000000">
|
|
<span style="color: #0000BB"><?php<br /></span><span style="color: #FF8000">// Send a select query to MSSQL<br /></span><span style="color: #0000BB">$query </span><span style="color: #007700">= </span><span style="color: #0000BB">mssql_query</span><span style="color: #007700">(</span><span style="color: #DD0000">'SELECT [username], [name] FROM [php].[dbo].[userlist]'</span><span style="color: #007700">);<br /><br /></span><span style="color: #FF8000">// Check if there were any records<br /></span><span style="color: #007700">if (!</span><span style="color: #0000BB">mssql_num_rows</span><span style="color: #007700">(</span><span style="color: #0000BB">$query</span><span style="color: #007700">)) {<br /> echo </span><span style="color: #DD0000">'No records found'</span><span style="color: #007700">;<br />} else {<br /> </span><span style="color: #FF8000">// Print a nice list of users in the format of:<br /> // * name (username)<br /><br /> </span><span style="color: #007700">echo </span><span style="color: #DD0000">'<ul>'</span><span style="color: #007700">;<br /><br /> while (</span><span style="color: #0000BB">$row </span><span style="color: #007700">= </span><span style="color: #0000BB">mssql_fetch_object</span><span style="color: #007700">(</span><span style="color: #0000BB">$query</span><span style="color: #007700">)) {<br /> echo </span><span style="color: #DD0000">'<li>' </span><span style="color: #007700">. </span><span style="color: #0000BB">$row</span><span style="color: #007700">-></span><span style="color: #0000BB">name </span><span style="color: #007700">. </span><span style="color: #DD0000">' (' </span><span style="color: #007700">. </span><span style="color: #0000BB">$row</span><span style="color: #007700">-></span><span style="color: #0000BB">username </span><span style="color: #007700">. </span><span style="color: #DD0000">')</li>'</span><span style="color: #007700">;<br /> }<br /><br /> echo </span><span style="color: #DD0000">'</ul>'</span><span style="color: #007700">;<br />}<br /><br /></span><span style="color: #FF8000">// Free the query result<br /></span><span style="color: #0000BB">mssql_free_result</span><span style="color: #007700">(</span><span style="color: #0000BB">$query</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?></span>
|
|
</span>
|
|
</pre></div>
|
|
</div>
|
|
|
|
</div>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 notes" id="refsect1-function.mssql-fetch-object-notes">
|
|
<h3 class="title">注释</h3>
|
|
<blockquote class="note"><p><strong class="note">Note</strong>: <span class="simpara">此函数返回的字段名<em class="emphasis">大小写敏感</em>。</span></p></blockquote>
|
|
<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.mssql-fetch-object-seealso">
|
|
<h3 class="title">参见</h3>
|
|
<p class="para">
|
|
<ul class="simplelist">
|
|
<li class="member"><span class="function"><a href="mssql_fetch_array.html" class="function" rel="rdfs-seeAlso">mssql_fetch_array()</a> - Fetch a result row as an associative array, a numeric array, or both</span></li>
|
|
<li class="member"><span class="function"><a href="mssql_fetch_row.html" class="function" rel="rdfs-seeAlso">mssql_fetch_row()</a> - Get row as enumerated array</span></li>
|
|
</ul>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
</div></div></div></body></html> |