mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-19 06:16:58 +08:00
114 lines
5.8 KiB
HTML
114 lines
5.8 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 a row as an object</title>
|
|
</head>
|
|
<body class="docs"><div id="layout">
|
|
<div id="layout-content"><div id="function.sybase-fetch-object" class="refentry">
|
|
<div class="refnamediv">
|
|
<h1 class="refname">sybase_fetch_object</h1>
|
|
<p class="verinfo">(PHP 4, PHP 5)</p><p class="refpurpose"><span class="refname">sybase_fetch_object</span> — <span class="dc-title">Fetch a row as an object</span></p>
|
|
|
|
</div>
|
|
|
|
<div id="function.sybase-fetch-object-refsynopsisdiv">
|
|
<div class="warning"><strong class="warning">Warning</strong><p class="simpara">This function was
|
|
<em class="emphasis">REMOVED</em> in PHP 7.0.0.</p></div>
|
|
</div>
|
|
|
|
<div class="refsect1 description" id="refsect1-function.sybase-fetch-object-description">
|
|
<h3 class="title">说明</h3>
|
|
<div class="methodsynopsis dc-description">
|
|
<span class="methodname"><strong>sybase_fetch_object</strong></span>
|
|
( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$result</code></span>
|
|
[, <span class="methodparam"><span class="type"><a href="language.pseudo-types.html#language.types.mixed" class="type mixed">mixed</a></span> <code class="parameter">$object</code></span>
|
|
] ) : <span class="type">object</span></div>
|
|
|
|
<p class="para rdfs-comment">
|
|
<span class="function"><strong>sybase_fetch_object()</strong></span> is similar to
|
|
<span class="function"><a href="sybase_fetch_assoc.html" class="function">sybase_fetch_assoc()</a></span>, with one difference - an object
|
|
is returned, instead of an array.
|
|
</p>
|
|
<p class="para">
|
|
Speed-wise, the function is identical to
|
|
<span class="function"><a href="sybase_fetch_array.html" class="function">sybase_fetch_array()</a></span>, and almost as quick as
|
|
<span class="function"><a href="sybase_fetch_row.html" class="function">sybase_fetch_row()</a></span> (the difference is insignificant).
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 parameters" id="refsect1-function.sybase-fetch-object-parameters">
|
|
<h3 class="title">参数</h3>
|
|
<p class="para">
|
|
<dl>
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">result</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">object</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
Use the second <code class="parameter">object</code> to specify the type of object
|
|
you want to return. If this parameter is omitted, the object will be of
|
|
type stdClass.
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
</dl>
|
|
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 returnvalues" id="refsect1-function.sybase-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.sybase-fetch-object-examples">
|
|
<h3 class="title">范例</h3>
|
|
<p class="para">
|
|
<div class="example" id="example-2596">
|
|
<p><strong>Example #1 <span class="function"><strong>sybase_fetch_object()</strong></span> return as Foo</strong></p>
|
|
<div class="example-contents">
|
|
<div class="phpcode"><pre><span style="color: #000000">
|
|
<span style="color: #0000BB"><?php<br /> </span><span style="color: #007700">class </span><span style="color: #0000BB">Foo </span><span style="color: #007700">{<br /> var </span><span style="color: #0000BB">$foo</span><span style="color: #007700">, </span><span style="color: #0000BB">$bar</span><span style="color: #007700">, </span><span style="color: #0000BB">$baz</span><span style="color: #007700">;<br /> }<br /><br /> </span><span style="color: #FF8000">// {...]<br /> </span><span style="color: #0000BB">$qrh</span><span style="color: #007700">= </span><span style="color: #0000BB">sybase_query</span><span style="color: #007700">(</span><span style="color: #DD0000">'SELECT foo, bar, baz FROM example'</span><span style="color: #007700">);<br /> </span><span style="color: #0000BB">$foo</span><span style="color: #007700">= </span><span style="color: #0000BB">sybase_fetch_object</span><span style="color: #007700">(</span><span style="color: #0000BB">$qrh</span><span style="color: #007700">, </span><span style="color: #DD0000">'Foo'</span><span style="color: #007700">);<br /> </span><span style="color: #0000BB">$bar</span><span style="color: #007700">= </span><span style="color: #0000BB">sybase_fetch_object</span><span style="color: #007700">(</span><span style="color: #0000BB">$qrh</span><span style="color: #007700">, new </span><span style="color: #0000BB">Foo</span><span style="color: #007700">());<br /> </span><span style="color: #FF8000">// {...]<br /></span><span style="color: #0000BB">?></span>
|
|
</span>
|
|
</pre></div>
|
|
</div>
|
|
|
|
</div>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 seealso" id="refsect1-function.sybase-fetch-object-seealso">
|
|
<h3 class="title">参见</h3>
|
|
<p class="para">
|
|
<ul class="simplelist">
|
|
<li class="member"><span class="function"><a href="sybase_fetch_array.html" class="function" rel="rdfs-seeAlso">sybase_fetch_array()</a> - Fetch row as array</span></li>
|
|
<li class="member"><span class="function"><a href="sybase_fetch_row.html" class="function" rel="rdfs-seeAlso">sybase_fetch_row()</a> - Get a result row as an enumerated array</span></li>
|
|
</ul>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
</div></div></div></body></html> |