<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.hashcontext.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'pt_BR',
  ),
  'this' => 
  array (
    0 => 'hashcontext.debuginfo.php',
    1 => 'HashContext::__debugInfo',
    2 => 'Returns debugging information about the hashing context',
  ),
  'up' => 
  array (
    0 => 'class.hashcontext.php',
    1 => 'HashContext',
  ),
  'prev' => 
  array (
    0 => 'hashcontext.construct.php',
    1 => 'HashContext::__construct',
  ),
  'next' => 
  array (
    0 => 'hashcontext.serialize.php',
    1 => 'HashContext::__serialize',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/hash/hashcontext/debuginfo.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="hashcontext.debuginfo" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">HashContext::__debugInfo</h1>
  <p class="verinfo">(PHP 8 &gt;= 8.4.0)</p><p class="refpurpose"><span class="refname">HashContext::__debugInfo</span> &mdash; <span class="dc-title">Returns debugging information about the hashing context</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-hashcontext.debuginfo-description">
  <h3 class="title">Descrição</h3>
  <div class="methodsynopsis dc-description"><span class="modifier">public</span> <span class="modifier">function</span> <span class="methodname"><strong>HashContext::__debugInfo</strong></span>(): <span class="type"><a href="language.types.array.php" class="type array">array</a></span></div>

  <p class="simpara">
   This method is not meant to be called directly; it is invoked by
   <span class="function"><a href="function.var-dump.php" class="function">var_dump()</a></span> and related functions when inspecting a
   <span class="classname"><a href="class.hashcontext.php" class="classname">HashContext</a></span> instance.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-hashcontext.debuginfo-parameters">
  <h3 class="title">Parâmetros</h3>
  <p class="simpara">Esta função não possui parâmetros.</p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-hashcontext.debuginfo-returnvalues">
  <h3 class="title">Valor Retornado</h3>
  <p class="simpara">
   Returns an associative array of debugging information. It contains an
   <code class="literal">algo</code> key holding the name of the hashing algorithm
   in use by the context.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-hashcontext.debuginfo-examples">
  <h3 class="title">Exemplos</h3>
  <div class="example" id="example-1">
   <p><strong>Exemplo #1 <span class="methodname"><strong>HashContext::__debugInfo()</strong></span> example</strong></p>
   <div class="example-contents">
<div class="annotation-interactive phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$ctx </span><span style="color: #007700">= </span><span style="color: #0000BB">hash_init</span><span style="color: #007700">(</span><span style="color: #DD0000">'sha256'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$ctx</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
   </div>

   <div class="example-contents"><p>O exemplo acima produzirá:</p></div>
   <div class="example-contents screen">
<div class="annotation-interactive examplescode"><pre class="examplescode">object(HashContext)#1 (1) {
  [&quot;algo&quot;]=&gt;
  string(6) &quot;sha256&quot;
}</pre>
</div>
   </div>
  </div>
 </div>


 <div class="refsect1 seealso" id="refsect1-hashcontext.debuginfo-seealso">
  <h3 class="title">Veja Também</h3>
  <ul class="simplelist">
   <li><span class="function"><a href="function.hash-init.php" class="function" rel="rdfs-seeAlso">hash_init()</a> - Inicializa um contexto de hash incremental</span></li>
   <li><span class="function"><a href="function.var-dump.php" class="function" rel="rdfs-seeAlso">var_dump()</a> - Despeja na sa&iacute;da informa&ccedil;&otilde;es sobre uma vari&aacute;vel</span></li>
  </ul>
 </div>

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