<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.mhash.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'function.mhash-get-block-size.php',
    1 => 'mhash_get_block_size',
    2 => 'Liefert die Blockgr&ouml;&szlig;e des &uuml;bergebenen Hashes',
  ),
  'up' => 
  array (
    0 => 'ref.mhash.php',
    1 => 'Mhash Funktionen',
  ),
  'prev' => 
  array (
    0 => 'function.mhash-count.php',
    1 => 'mhash_count',
  ),
  'next' => 
  array (
    0 => 'function.mhash-get-hash-name.php',
    1 => 'mhash_get_hash_name',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    'path' => 'reference/mhash/functions/mhash-get-block-size.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.mhash-get-block-size" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">mhash_get_block_size</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">mhash_get_block_size</span> &mdash; <span class="dc-title">Liefert die Blockgröße des übergebenen Hashes</span></p>

 </div>

 <div id="function.mhash-get-block-size-refsynopsisdiv">
  <div class="warning"><strong class="warning">Warnung</strong><p class="simpara">Diese Funktion ist seit
PHP 8.1.0 als <em>DEPRECATED</em> (veraltet) markiert. Von der
Verwendung dieser Funktion wird dringend abgeraten.</p></div>
 </div>

 <div class="refsect1 description" id="refsect1-function.mhash-get-block-size-description">
  <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="attribute"><a href="class.deprecated.php">#[\Deprecated]</a> </span><br>
   <span class="methodname"><strong>mhash_get_block_size</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$algo</code></span>): <span class="type"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span>|<span class="type"><a href="language.types.singleton.php" class="type false">false</a></span></span></div>

  <p class="para rdfs-comment">
   Gibt die Blockgröße des übergebenen <code class="parameter">algo</code> zurück.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.mhash-get-block-size-parameters">
  <h3 class="title">Parameter-Liste</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">algo</code></dt>
     <dd>
      <p class="para">
       Die Hashkennung. Eine der
       <strong><code>MHASH_hashname</code></strong>-Konstanten.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.mhash-get-block-size-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="para">
   Gibt die Größe in Bytes zurück oder <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong>, wenn der
   <code class="parameter">algo</code> nicht existiert.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.mhash-get-block-size-changelog">
  <h3 class="title">Changelog</h3>
  <p class="para">
   <table class="doctable informaltable">
    
     <thead>
      <tr>
       <th>Version</th>
       <th>Beschreibung</th>
      </tr>

     </thead>

     <tbody class="tbody">
      <tr>
       <td>8.1.0</td>
       <td>
        Diese Funktion ist veraltet. Stattdessen sollten die
        <a href="ref.hash.php" class="link"><code class="literal">hash_*()</code>-Funktionen</a>
        verwendet werden.
       </td>
      </tr>

     </tbody>
    
   </table>

  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.mhash-get-block-size-examples">
  <h3 class="title">Beispiele</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Beispiel #1 <span class="function"><strong>mhash_get_block_size()</strong></span>-Beispiel</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /><br /></span><span style="color: #007700">echo </span><span style="color: #0000BB">mhash_get_block_size</span><span style="color: #007700">(</span><span style="color: #0000BB">MHASH_MD5</span><span style="color: #007700">); </span><span style="color: #FF8000">// 16<br /><br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

   </div>
  </p>
 </div>


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