<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.ibase.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'function.ibase-blob-info.php',
    1 => 'ibase_blob_info',
    2 => 'Return blob length and other useful info',
  ),
  'up' => 
  array (
    0 => 'ref.ibase.php',
    1 => 'Firebird/InterBase Functions',
  ),
  'prev' => 
  array (
    0 => 'function.ibase-blob-import.php',
    1 => 'ibase_blob_import',
  ),
  'next' => 
  array (
    0 => 'function.ibase-blob-open.php',
    1 => 'ibase_blob_open',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/ibase/functions/ibase-blob-info.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.ibase-blob-info" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">ibase_blob_info</h1>
  <p class="verinfo">(PHP 5, PHP 7 &lt; 7.4.0)</p><p class="refpurpose"><span class="refname">ibase_blob_info</span> &mdash; <span class="dc-title">Return blob length and other useful info</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.ibase-blob-info-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>ibase_blob_info</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$link_identifier</code></span>, <span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$blob_id</code></span>): <span class="type"><a href="language.types.array.php" class="type array">array</a></span></div>

  <div class="methodsynopsis dc-description"><span class="methodname"><strong>ibase_blob_info</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$blob_id</code></span>): <span class="type"><a href="language.types.array.php" class="type array">array</a></span></div>

  <p class="simpara">
   Returns the BLOB length and other useful information.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.ibase-blob-info-parameters">
  <h3 class="title">Parameters</h3>
  <dl>
   
    <dt><code class="parameter">link_identifier</code></dt>
    <dd>
     <span class="simpara">
      An InterBase link identifier. If omitted, the last opened link is
      assumed.
     </span>
    </dd>
   
   
    <dt><code class="parameter">blob_id</code></dt>
    <dd>
     <span class="simpara">
      A BLOB id.
     </span>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.ibase-blob-info-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="simpara">
   Returns an array containing information about a BLOB. The information returned
   consists of the length of the BLOB, the number of segments it contains, the size
   of the largest segment, and whether it is a stream BLOB or a segmented BLOB.
  </p>
 </div>


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