downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Our source is open

The syntax highlighted source is automatically generated by PHP from the plaintext script. If you're interested in what's behind the several functions we used, you can always take a look at the source of the following files:

Of course, if you want to see the source of this page, we have it available. You can also browse the Git repository for this website on git.php.net.

Source of: /manual/ja/function.cubrid-get.php

<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once
dirname(__FILE__) ."/toc/ref.cubrid.inc";
$setup = array (
 
'home' =>
  array (
   
0 => 'index.php',
   
1 => 'PHP Manual',
  ),
 
'head' =>
  array (
   
0 => 'UTF-8',
   
1 => 'ja',
  ),
 
'this' =>
  array (
   
0 => 'function.cubrid-get.php',
   
1 => 'cubrid_get',
  ),
 
'up' =>
  array (
   
0 => 'ref.cubrid.php',
   
1 => 'CUBRID 関数',
  ),
 
'prev' =>
  array (
   
0 => 'function.cubrid-get-server-info.php',
   
1 => 'cubrid_get_server_info',
  ),
 
'next' =>
  array (
   
0 => 'function.cubrid-insert-id.php',
   
1 => 'cubrid_insert_id',
  ),
 
'alternatives' =>
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);

manual_header();
?>
<div id="function.cubrid-get" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">cubrid_get</h1>
  <p class="verinfo">(PECL CUBRID &gt;= 8.3.0)</p><p class="refpurpose"><span class="refname">cubrid_get</span> &mdash; <span class="dc-title">Get a column using OID</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.cubrid-get-description">
  <h3 class="title">説明</h3>
  <div class="methodsynopsis dc-description">
   <span class="type"><a href="language.pseudo-types.php#language.types.mixed" class="type mixed">mixed</a></span> <span class="methodname"><strong>cubrid_get</strong></span>
    ( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$conn_identifier</code></span> 
   , <span class="methodparam"><span class="type">string</span> <code class="parameter">$oid</code></span> 
   [, <span class="methodparam"><span class="type"><a href="language.pseudo-types.php#language.types.mixed" class="type mixed">mixed</a></span> <code class="parameter">$attr</code></span> 
  ] )</div>

  <p class="para rdfs-comment">
    The  <span class="function"><strong>cubrid_get()</strong></span> function is used to get the attribute
    of the instance of the given <em><code class="parameter">oid</code></em>.  You can get
    single attribute by using string data type for the
    <em><code class="parameter">attr</code></em> argument, or many attributes by using array
    data type for the <em><code class="parameter">attr</code></em> argument.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.cubrid-get-parameters">
  <h3 class="title">パラメータ</h3>
  <p class="para">
  <dl>

    <dt>

  <span class="term"><em><code class="parameter">conn_identifier</code></em></span>
  <dd>
<p class="para">Connection identifier.</p></dd>

   </dt>

   <dt>

  <span class="term"><em><code class="parameter">oid</code></em></span>
  <dd>
<p class="para">OID of the instance that you want to read.</p></dd>

   </dt>

   <dt>

  <span class="term"><em><code class="parameter">attr</code></em></span>
  <dd>
<p class="para">Name of the attribute that you want to read.</p></dd>

   </dt>

  </dl>

  </p>
 </div>



 <div class="refsect1 returnvalues" id="refsect1-function.cubrid-get-returnvalues">
  <h3 class="title">返り値</h3>
  <p class="para">
   Content of the requested attribute, when process is successful; When
   <em><code class="parameter">attr</code></em> is set with string data type, the result is
   returned as a string; when <em><code class="parameter">attr</code></em> is set with array
   data type (0-based numerical array), then the result is returned in
   associative array. When <em><code class="parameter">attr</code></em> is omitted, then all
   attributes are received in array form.
  </p>
  <p class="para">
   <strong><code>FALSE</code></strong> when process is unsuccessful or result is NULL (If error occurs to
   distinguish empty string from NULL, then it prints the warning message.
   You can check the error by using  <span class="function"><a href="function.cubrid-error-code.php" class="function">cubrid_error_code()</a></span>)
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.cubrid-get-examples">
  <h3 class="title">例</h3>
  <div class="example" id="example-1091">
   <p><strong>例1  <span class="function"><strong>cubrid_get()</strong></span> example</strong></p>
   <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br />$conn&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">cubrid_connect</span><span style="color: #007700">(</span><span style="color: #DD0000">"localhost"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">33000</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"demodb"</span><span style="color: #007700">);<br /><br />@</span><span style="color: #0000BB">cubrid_execute</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"DROP&nbsp;TABLE&nbsp;foo"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">cubrid_execute</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"CREATE&nbsp;TABLE&nbsp;foo(a&nbsp;int&nbsp;AUTO_INCREMENT,&nbsp;b&nbsp;set(int),&nbsp;c&nbsp;list(int),&nbsp;d&nbsp;char(10))"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">cubrid_execute</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"INSERT&nbsp;INTO&nbsp;foo(a,&nbsp;b,&nbsp;c,&nbsp;d)&nbsp;VALUES(1,&nbsp;{1,2,3},&nbsp;{11,22,33,333},&nbsp;'a')"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">cubrid_execute</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"INSERT&nbsp;INTO&nbsp;foo(a,&nbsp;b,&nbsp;c,&nbsp;d)&nbsp;VALUES(2,&nbsp;{4,5,7},&nbsp;{44,55,66,666},&nbsp;'b')"</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$req&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">cubrid_execute</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"SELECT&nbsp;*&nbsp;FROM&nbsp;foo"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">CUBRID_INCLUDE_OID</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">cubrid_move_cursor</span><span style="color: #007700">(</span><span style="color: #0000BB">$req</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">1</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">CUBRID_CURSOR_FIRST</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$oid&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">cubrid_current_oid</span><span style="color: #007700">(</span><span style="color: #0000BB">$req</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$attr&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">cubrid_get</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$oid</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"b"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$attr</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$attr&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">cubrid_get</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$oid</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$attr</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">cubrid_close_request</span><span style="color: #007700">(</span><span style="color: #0000BB">$req</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">cubrid_disconnect</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</code></div>
   </div>

    <div class="example-contents"><p>上の例の出力は以下となります。</p></div>
    <div class="example-contents screen">
<div class="cdata"><pre>
string(9) &quot;{1, 2, 3}&quot;
array(4) {
  [&quot;a&quot;]=&gt;
  string(1) &quot;1&quot;
  [&quot;b&quot;]=&gt;
  array(3) {
    [0]=&gt;
    string(1) &quot;1&quot;
    [1]=&gt;
    string(1) &quot;2&quot;
    [2]=&gt;
    string(1) &quot;3&quot;
  }
  [&quot;c&quot;]=&gt;
  array(4) {
    [0]=&gt;
    string(2) &quot;11&quot;
    [1]=&gt;
    string(2) &quot;22&quot;
    [2]=&gt;
    string(2) &quot;33&quot;
    [3]=&gt;
    string(3) &quot;333&quot;
  }
  [&quot;d&quot;]=&gt;
  string(10) &quot;a         &quot;
}
</pre></div>
   </div>
  </div>
 </div>


  <div class="refsect1 seealso" id="refsect1-function.cubrid-get-seealso">
  <h3 class="title">参考</h3>
  <p class="para">
   <ul class="simplelist">
   <li class="member"> <span class="function"><a href="function.cubrid-put.php" class="function" rel="rdfs-seeAlso">cubrid_put()</a> - Update a column using OID</span></li>
   </ul>
  </p>
  </div>

 
</div><?php manual_footer(); ?>
 
show source | credits | sitemap | contact | advertising | mirror sites