<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/cubridmysql.cubrid.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'ja',
  ),
  'this' => 
  array (
    0 => 'function.cubrid-fetch-lengths.php',
    1 => 'cubrid_fetch_lengths',
    2 => 'Return an array with the lengths of the values of each field from the current row',
  ),
  'up' => 
  array (
    0 => 'cubridmysql.cubrid.php',
    1 => 'CUBRID MySQL 互換関数',
  ),
  'prev' => 
  array (
    0 => 'function.cubrid-fetch-field.php',
    1 => 'cubrid_fetch_field',
  ),
  'next' => 
  array (
    0 => 'function.cubrid-fetch-object.php',
    1 => 'cubrid_fetch_object',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/cubrid/cubridmysql/cubrid-fetch-lengths.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.cubrid-fetch-lengths" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">cubrid_fetch_lengths</h1>
  <p class="verinfo">(PECL CUBRID &gt;= 8.3.0)</p><p class="refpurpose"><span class="refname">cubrid_fetch_lengths</span> &mdash; <span class="dc-title">Return an array with the lengths of the values of each field from the current row</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.cubrid-fetch-lengths-description">
  <h3 class="title">説明</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>cubrid_fetch_lengths</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$result</code></span>): <span class="type"><a href="language.types.array.php" class="type array">array</a></span></div>

  <p class="simpara">
    This function returns a numeric array with the lengths of the values of
    each field from the current row of the result set or it returns FALSE on
    failure.
  </p>
  <blockquote class="note"><p><strong class="note">注意</strong>: 
   <span class="simpara">
    If field data type is BLOB/CLOB, you should get its length by using
    <span class="function"><a href="function.cubrid-lob-size.php" class="function">cubrid_lob_size()</a></span>.
   </span>
  </p></blockquote>

 </div>


 <div class="refsect1 parameters" id="refsect1-function.cubrid-fetch-lengths-parameters">
 <h3 class="title">パラメータ</h3>
 <dl>
   
   <dt><code class="parameter">result</code></dt>
   <dd><span class="simpara"><code class="parameter">result</code> comes from a call to <span class="function"><a href="function.cubrid-execute.php" class="function">cubrid_execute()</a></span></span></dd>
  
 </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.cubrid-fetch-lengths-returnvalues">
  <h3 class="title">戻り値</h3>
  <p class="simpara">
    A numeric array, when process is successful.
  </p>
   <p class="simpara">
    <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> on failure.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.cubrid-fetch-lengths-examples">
  <h3 class="title">例</h3>
  <div class="example" id="example-1">
   <p><strong>例1 <span class="function"><strong>cubrid_fetch_lengths()</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 </span><span style="color: #007700">= </span><span style="color: #0000BB">cubrid_connect</span><span style="color: #007700">(</span><span style="color: #DD0000">"localhost"</span><span style="color: #007700">, </span><span style="color: #0000BB">33000</span><span style="color: #007700">, </span><span style="color: #DD0000">"demodb"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$result </span><span style="color: #007700">= </span><span style="color: #0000BB">cubrid_execute</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">, </span><span style="color: #DD0000">"SELECT * FROM game WHERE host_year=2004 AND nation_code='AUS' AND medal='G'"</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$row </span><span style="color: #007700">= </span><span style="color: #0000BB">cubrid_fetch_row</span><span style="color: #007700">(</span><span style="color: #0000BB">$result</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">$row</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$lens </span><span style="color: #007700">= </span><span style="color: #0000BB">cubrid_fetch_lengths</span><span style="color: #007700">(</span><span style="color: #0000BB">$result</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">$lens</span><span style="color: #007700">);<br /><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="examplescode"><pre class="examplescode">Array
(
    [0] =&gt; 2004
    [1] =&gt; 20085
    [2] =&gt; 15118
    [3] =&gt; 30134
    [4] =&gt; AUS
    [5] =&gt; G
    [6] =&gt; 2004-8-20
)
Array
(
    [0] =&gt; 4
    [1] =&gt; 5
    [2] =&gt; 5
    [3] =&gt; 5
    [4] =&gt; 3
    [5] =&gt; 1
    [6] =&gt; 10
)</pre>
</div>
    </div>
  </div>
 </div>


</div><?php manual_footer($setup); ?>