<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.math.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'fr',
  ),
  'this' => 
  array (
    0 => 'function.bindec.php',
    1 => 'bindec',
    2 => 'Convertit de binaire en d&eacute;cimal',
  ),
  'up' => 
  array (
    0 => 'ref.math.php',
    1 => 'Fonctions Math',
  ),
  'prev' => 
  array (
    0 => 'function.base-convert.php',
    1 => 'base_convert',
  ),
  'next' => 
  array (
    0 => 'function.ceil.php',
    1 => 'ceil',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'fr',
    'path' => 'reference/math/functions/bindec.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.bindec" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">bindec</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">bindec</span> &mdash; <span class="dc-title">Convertit de binaire en décimal</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-function.bindec-description">
  <h3 class="title">Description</h3>
   <div class="methodsynopsis dc-description">
    <span class="methodname"><strong>bindec</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$binary_string</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.float.php" class="type float">float</a></span></span></div>

  <p class="para rdfs-comment">
   Retourne la conversion d&#039;un nombre binaire représenté par la chaîne
   <code class="parameter">binary_string</code> en décimal.
  </p>
  <p class="para">
   <span class="function"><strong>bindec()</strong></span> convertit un nombre binaire en un <a href="language.types.integer.php" class="link">entier</a>,
   ou, si nécessaire pour des raisons de taille, en <a href="language.types.float.php" class="link">nombre décimal</a>.
  </p>
  <p class="para">
   <span class="function"><strong>bindec()</strong></span> interprète toutes les valeurs
   <code class="parameter">binary_string</code> comme des valeurs non-signées entières.
   Ceci est dû au fait que la fonction <span class="function"><strong>bindec()</strong></span> voit
   le premier bit comme un autre ordre de grandeur plutôt que comme le
   bit de signe.
  </p>
 </div>

 <div class="refsect1 parameters" id="refsect1-function.bindec-parameters">
  <h3 class="title">Liste de paramètres</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">binary_string</code></dt>
     <dd>
      <p class="para">
       La chaîne binaire à convertir.
       Tous les caractères invalides dans <code class="parameter">binary_string</code>
       sont ignorés silencieusement.
       À partir de PHP 7.4.0 fournir des caractères invalides est obsolète.
      </p>
     </dd>
    
   </dl>
  </p>
  <div class="warning"><strong class="warning">Avertissement</strong>
   <p class="para">
    Ce paramètre doit être une <a href="language.types.string.php" class="link">chaîne de caractères</a>.
    L&#039;utilisation d&#039;un autre type de données produit des résultats inattendus.
   </p>
  </div>
 </div>

 <div class="refsect1 returnvalues" id="refsect1-function.bindec-returnvalues">
  <h3 class="title">Valeurs de retour</h3>
  <p class="para">
   La valeur décimale de <code class="parameter">binary_string</code>
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.bindec-changelog">
  <h3 class="title">Historique</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>Version</th>
      <th>Description</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
      <td>7.4.0</td>
      <td>
       Passer des caractères invalides génèrera désormais une notice obsolète.
       Le résultat sera toujours calculé comme si les caractères invalides
       n&#039;existaient pas.
      </td>
     </tr>

    </tbody>
   
  </table>

 </div>

 
 <div class="refsect1 examples" id="refsect1-function.bindec-examples">
  <h3 class="title">Exemples</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Exemple #1 Exemple avec <span class="function"><strong>bindec()</strong></span></strong></p>
    <div class="example-contents">
<div class="annotation-interactive phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /></span><span style="color: #007700">echo </span><span style="color: #0000BB">bindec</span><span style="color: #007700">(</span><span style="color: #DD0000">'110011'</span><span style="color: #007700">) . </span><span style="color: #DD0000">"\n"</span><span style="color: #007700">;<br />echo </span><span style="color: #0000BB">bindec</span><span style="color: #007700">(</span><span style="color: #DD0000">'000110011'</span><span style="color: #007700">) . </span><span style="color: #DD0000">"\n"</span><span style="color: #007700">;<br /><br />echo </span><span style="color: #0000BB">bindec</span><span style="color: #007700">(</span><span style="color: #DD0000">'111'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>L&#039;exemple ci-dessus va afficher :</p></div>
    <div class="example-contents screen">
<div class="annotation-interactive examplescode"><pre class="examplescode">51
51
7</pre>
</div>
    </div>
   </div>
  </p>
  <p class="para">
   <div class="example" id="example-2">
    <p><strong>Exemple #2 <span class="function"><strong>bindec()</strong></span> interprète l&#039;entrée
     comme un entier non-signé</strong></p>
    <div class="example-contents">
<div class="annotation-interactive phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /></span><span style="color: #FF8000">/*<br /> * Le plus important dans cet exemple est dans la sortie<br /> * plutôt que dans le code PHP lui-même.<br /> */<br /><br /></span><span style="color: #0000BB">$magnitude_lower </span><span style="color: #007700">= </span><span style="color: #0000BB">pow</span><span style="color: #007700">(</span><span style="color: #0000BB">2</span><span style="color: #007700">, (</span><span style="color: #0000BB">PHP_INT_SIZE </span><span style="color: #007700">* </span><span style="color: #0000BB">8</span><span style="color: #007700">) - </span><span style="color: #0000BB">2</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">p</span><span style="color: #007700">(</span><span style="color: #0000BB">$magnitude_lower </span><span style="color: #007700">- </span><span style="color: #0000BB">1</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">p</span><span style="color: #007700">(</span><span style="color: #0000BB">$magnitude_lower</span><span style="color: #007700">, </span><span style="color: #DD0000">'Avez-vous vu le changement ? Soyez attentif la prochaine fois...'</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">p</span><span style="color: #007700">(</span><span style="color: #0000BB">PHP_INT_MAX</span><span style="color: #007700">, </span><span style="color: #DD0000">'PHP_INT_MAX'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">p</span><span style="color: #007700">(~</span><span style="color: #0000BB">PHP_INT_MAX</span><span style="color: #007700">, </span><span style="color: #DD0000">'interprété comme étant supérieur à PHP_INT_MAX'</span><span style="color: #007700">);<br /><br />if (</span><span style="color: #0000BB">PHP_INT_SIZE </span><span style="color: #007700">== </span><span style="color: #0000BB">4</span><span style="color: #007700">) {<br />    </span><span style="color: #0000BB">$note </span><span style="color: #007700">= </span><span style="color: #DD0000">'interprété comme étant le plus grand entier non-signé'</span><span style="color: #007700">;<br />} else {<br />    </span><span style="color: #0000BB">$note </span><span style="color: #007700">= </span><span style="color: #DD0000">'interprété comme étant le plus grand entier non-signé<br />              (18446744073709551615) mais faussé par la précision de la virgule flottante'</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">p</span><span style="color: #007700">(-</span><span style="color: #0000BB">1</span><span style="color: #007700">, </span><span style="color: #0000BB">$note</span><span style="color: #007700">);<br /><br /><br />function </span><span style="color: #0000BB">p</span><span style="color: #007700">(</span><span style="color: #0000BB">$input</span><span style="color: #007700">, </span><span style="color: #0000BB">$note </span><span style="color: #007700">= </span><span style="color: #DD0000">''</span><span style="color: #007700">) {<br />    echo </span><span style="color: #DD0000">"entrée :        </span><span style="color: #0000BB">$input</span><span style="color: #DD0000">\n"</span><span style="color: #007700">;<br /><br />    </span><span style="color: #0000BB">$format </span><span style="color: #007700">= </span><span style="color: #DD0000">'%0' </span><span style="color: #007700">. (</span><span style="color: #0000BB">PHP_INT_SIZE </span><span style="color: #007700">* </span><span style="color: #0000BB">8</span><span style="color: #007700">) . </span><span style="color: #DD0000">'b'</span><span style="color: #007700">;<br />    </span><span style="color: #0000BB">$bin </span><span style="color: #007700">= </span><span style="color: #0000BB">sprintf</span><span style="color: #007700">(</span><span style="color: #0000BB">$format</span><span style="color: #007700">, </span><span style="color: #0000BB">$input</span><span style="color: #007700">);<br />    echo </span><span style="color: #DD0000">"binaire :       </span><span style="color: #0000BB">$bin</span><span style="color: #DD0000">\n"</span><span style="color: #007700">;<br /><br />    </span><span style="color: #0000BB">ini_set</span><span style="color: #007700">(</span><span style="color: #DD0000">'precision'</span><span style="color: #007700">, </span><span style="color: #0000BB">20</span><span style="color: #007700">);  </span><span style="color: #FF8000">// Pour plus de lisibilité sur les PC 64 bits.<br />    </span><span style="color: #0000BB">$dec </span><span style="color: #007700">= </span><span style="color: #0000BB">bindec</span><span style="color: #007700">(</span><span style="color: #0000BB">$bin</span><span style="color: #007700">);<br />    echo </span><span style="color: #DD0000">'bindec() :     ' </span><span style="color: #007700">. </span><span style="color: #0000BB">$dec </span><span style="color: #007700">. </span><span style="color: #DD0000">"\n"</span><span style="color: #007700">;<br /><br />    if (</span><span style="color: #0000BB">$note</span><span style="color: #007700">) {<br />        echo </span><span style="color: #DD0000">"Note :         </span><span style="color: #0000BB">$note</span><span style="color: #DD0000">\n"</span><span style="color: #007700">;<br />    }<br /><br />    echo </span><span style="color: #DD0000">"\n"</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>Résultat de l&#039;exemple ci-dessus sur une machine 32 bits :</p></div>
    <div class="example-contents screen">
<div class="annotation-interactive examplescode"><pre class="examplescode">entrée :        1073741823
binaire :       00111111111111111111111111111111
bindec() :     1073741823

entrée :        1073741824
binaire :       01000000000000000000000000000000
bindec():     1073741824
Note :         Avez-vous vu le changement ? Soyez attentif la prochaine fois...

entrée :        2147483647
binaire :       01111111111111111111111111111111
bindec():     2147483647
Note :         PHP_INT_MAX

entrée :        -2147483648
binaire :       10000000000000000000000000000000
bindec():     2147483648
Note :         interprété comme étant supérieur à PHP_INT_MAX

entrée :        -1
binaire :       11111111111111111111111111111111
bindec():     4294967295
Note :         interprété comme étant le plus grand entier non-signé</pre>
</div>
    </div>
    <div class="example-contents"><p>Résultat de l&#039;exemple ci-dessus sur une machine 64 bits :</p></div>
    <div class="example-contents screen">
<div class="annotation-interactive examplescode"><pre class="examplescode">entrée :        4611686018427387903
binaire :       0011111111111111111111111111111111111111111111111111111111111111
bindec() :     4611686018427387903

entrée :        4611686018427387904
binaire :       0100000000000000000000000000000000000000000000000000000000000000
bindec() :     4611686018427387904
Note :         Avez-vous vu le changement ? Soyez attentif la prochaine fois...

entrée :        9223372036854775807
binaire :       0111111111111111111111111111111111111111111111111111111111111111
bindec() :     9223372036854775807
Note :         PHP_INT_MAX

entrée :        -9223372036854775808
binaire :       1000000000000000000000000000000000000000000000000000000000000000
bindec() :     9223372036854775808
Note :         interprété comme étant supérieur à PHP_INT_MAX

entrée :        -1
binaire :       1111111111111111111111111111111111111111111111111111111111111111
bindec() :     18446744073709551616
Note :         interprété comme étant le plus grand entier non-signé
              (18446744073709551615) mais faussé par la précision de la virgule flottante</pre>
</div>
    </div>
   </div>
  </p>
 </div>


 <div class="refsect1 notes" id="refsect1-function.bindec-notes">
  <h3 class="title">Notes</h3>
  <blockquote class="note"><p><strong class="note">Note</strong>: 
   <p class="para">
    La fonction peut convertir des nombres qui sont trop larges pour
    tenir dans un type <a href="language.types.integer.php" class="link">entier</a>, dans ce cas, ces valeurs sont retournées
    en tant que <a href="language.types.float.php" class="link">nombre décimal</a>.
   </p>
  </p></blockquote>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.bindec-seealso">
  <h3 class="title">Voir aussi</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.decbin.php" class="function" rel="rdfs-seeAlso">decbin()</a> - Convertit de d&eacute;cimal en binaire</span></li>
    <li><span class="function"><a href="function.octdec.php" class="function" rel="rdfs-seeAlso">octdec()</a> - Conversion d'octal en d&eacute;cimal</span></li>
    <li><span class="function"><a href="function.hexdec.php" class="function" rel="rdfs-seeAlso">hexdec()</a> - Convertit de hexad&eacute;cimal en d&eacute;cimal</span></li>
    <li><span class="function"><a href="function.base-convert.php" class="function" rel="rdfs-seeAlso">base_convert()</a> - Convertit un nombre entre des bases arbitraires</span></li>
   </ul>
  </p>
 </div>

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