<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.runkit7.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'function.runkit7-zval-inspect.php',
    1 => 'runkit7_zval_inspect',
    2 => 'Returns information about the passed in value with data types, reference counts, etc',
  ),
  'up' => 
  array (
    0 => 'ref.runkit7.php',
    1 => 'runkit7 Функції',
  ),
  'prev' => 
  array (
    0 => 'function.runkit7-superglobals.php',
    1 => 'runkit7_superglobals',
  ),
  'next' => 
  array (
    0 => 'book.uopz.php',
    1 => 'uopz',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/runkit7/functions/runkit7-zval-inspect.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.runkit7-zval-inspect" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">runkit7_zval_inspect</h1>
  <p class="verinfo">(PECL runkit7 &gt;= Unknown)</p><p class="refpurpose"><span class="refname">runkit7_zval_inspect</span> &mdash; <span class="dc-title">Returns information about the passed in value with data types, reference counts, etc</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.runkit7-zval-inspect-description">
  <h3 class="title">Опис</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>runkit7_zval_inspect</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$value</code></span>): <span class="type"><a href="language.types.array.php" class="type array">array</a></span></div>

 </div>


 <div class="refsect1 parameters" id="refsect1-function.runkit7-zval-inspect-parameters">
  <h3 class="title">Параметри</h3>
  <dl>
   
    <dt><code class="parameter">value</code></dt>
    <dd>
     <p class="para">
      The value to return the representation of
     </p>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.runkit7-zval-inspect-returnvalues">
  <h3 class="title">Значення, що повертаються</h3>
  <p class="para">
   The array returned by this function contains the following elements:
   <ul class="simplelist">
    <li><code class="literal">address</code></li>
    <li><code class="literal">refcount</code> (optional)</li>
    <li><code class="literal">is_ref</code> (optional)</li>
    <li><code class="literal">type</code></li>
   </ul>
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.runkit7-zval-inspect-examples">
  <h3 class="title">Приклади</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Приклад #1 <span class="function"><strong>runkit7_zval_inspect()</strong></span> example</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /><br />$var </span><span style="color: #007700">= new </span><span style="color: #0000BB">DateTime</span><span style="color: #007700">();<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">runkit7_zval_inspect</span><span style="color: #007700">(</span><span style="color: #0000BB">$var</span><span style="color: #007700">));<br /><br /></span><span style="color: #0000BB">$var </span><span style="color: #007700">= </span><span style="color: #0000BB">1</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">runkit7_zval_inspect</span><span style="color: #007700">(</span><span style="color: #0000BB">$var</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(4) {
  [&quot;address&quot;]=&gt;
  string(14) &quot;0x7f45ab21b1e0&quot;
  [&quot;refcount&quot;]=&gt;
  int(2)
  [&quot;is_ref&quot;]=&gt;
  bool(false)
  [&quot;type&quot;]=&gt;
  int(8)
}

array(2) {
  [&quot;address&quot;]=&gt;
  string(14) &quot;0x7f45ab21b1e0&quot;
  [&quot;type&quot;]=&gt;
  int(4)
}</pre>
</div>
    </div>
   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.runkit7-zval-inspect-seealso">
  <h3 class="title">Прогляньте також</h3>
  <p class="para">
   <ul class="simplelist">
    <li><a href="language.references.php" class="link">References Explained</a></li>
    <li><a href="http://derickrethans.nl/php_references_article.php" class="link external">&raquo;&nbsp;References Explained (by Derick Rethans)</a></li>
   </ul>
  </p>
 </div>

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