Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > f800694edefe91adea2624f711a41a2d > files > 6233

php-manual-en-5.5.7-1.mga4.noarch.rpm

<!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><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="function.sybase-fetch-field.html">sybase_fetch_field</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="function.sybase-fetch-row.html">sybase_fetch_row</a></div>
 <div class="up"><a href="ref.sybase.html">Sybase Functions</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><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> &mdash; <span class="dc-title">Fetch a row as an object</span></p>

 </div>
 
 <div class="refsect1 description" id="refsect1-function.sybase-fetch-object-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="type">object</span> <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>
  ] )</div>

  <p class="para rdfs-comment">
    <span class="function"><strong>sybase_fetch_object()</strong></span> is similar to
    <span class="function"><a href="function.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="function.sybase-fetch-array.html" class="function">sybase_fetch_array()</a></span>, and almost as quick as
    <span class="function"><a href="function.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">Parameters</h3>
  <p class="para">
   <dl>

    <dt>

     <span class="term"><em><code class="parameter">result</code></em></span>
     <dd>

      <p class="para">
      </p>
     </dd>

    </dt>

    <dt>

     <span class="term"><em><code class="parameter">object</code></em></span>
     <dd>

      <p class="para">
       Use the second <em><code class="parameter">object</code></em> to specify the type of object
       you want to return. If this parameter is omitted, the object will be of
       type stdClass.
      </p>
     </dd>

    </dt>

   </dl>

  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.sybase-fetch-object-returnvalues">
  <h3 class="title">Return Values</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 changelog" id="refsect1-function.sybase-fetch-object-changelog">
  <h3 class="title">Changelog</h3>
  <p class="para">
   <table class="doctable informaltable">
    
     <thead>
      <tr>
       <th>Version</th>
       <th>Description</th>
      </tr>

     </thead>

     <tbody class="tbody">
      <tr>
       <td>4.3.0</td>
       <td><p class="para">
        This function will no longer return numeric object members.
        Old behaviour:
        <div class="example-contents screen">
<div class="changelogcode"><pre class="changelogcode">object(stdclass)(3) {
  [0]=&gt;
  string(3) &quot;foo&quot;
  [&quot;foo&quot;]=&gt;
  string(3) &quot;foo&quot;
  [1]=&gt;
  string(3) &quot;bar&quot;
  [&quot;bar&quot;]=&gt;
  string(3) &quot;bar&quot;
}</pre>
</div>
        </div>
        New behaviour:
        <div class="example-contents screen">
<div class="changelogcode"><pre class="changelogcode">object(stdclass)(3) {
  [&quot;foo&quot;]=&gt;
  string(3) &quot;foo&quot;
  [&quot;bar&quot;]=&gt;
  string(3) &quot;bar&quot;
}</pre>
</div>
        </div>
        </p>
       </td>
      </tr>

     </tbody>
    
   </table>

  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.sybase-fetch-object-examples">
  <h3 class="title">Examples</h3>
  <p class="para">
   <div class="example" id="example-2197">
    <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"><code><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">class&nbsp;</span><span style="color: #0000BB">Foo&nbsp;</span><span style="color: #007700">{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;var&nbsp;</span><span style="color: #0000BB">$foo</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$bar</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$baz</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;}<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;{...]<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$qrh</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">sybase_query</span><span style="color: #007700">(</span><span style="color: #DD0000">'SELECT&nbsp;foo,&nbsp;bar,&nbsp;baz&nbsp;FROM&nbsp;example'</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$foo</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">sybase_fetch_object</span><span style="color: #007700">(</span><span style="color: #0000BB">$qrh</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'Foo'</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$bar</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">sybase_fetch_object</span><span style="color: #007700">(</span><span style="color: #0000BB">$qrh</span><span style="color: #007700">,&nbsp;new&nbsp;</span><span style="color: #0000BB">Foo</span><span style="color: #007700">());<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;{...]<br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</code></div>
    </div>

   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.sybase-fetch-object-seealso">
  <h3 class="title">See Also</h3>
  <p class="para">
   <ul class="simplelist">
    <li class="member"> <span class="function"><a href="function.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="function.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><hr /><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="function.sybase-fetch-field.html">sybase_fetch_field</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="function.sybase-fetch-row.html">sybase_fetch_row</a></div>
 <div class="up"><a href="ref.sybase.html">Sybase Functions</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>