<?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 => 'ja',
  ),
  'this' => 
  array (
    0 => 'function.hexdec.php',
    1 => 'hexdec',
    2 => '16 進数を 10 進数に変換する',
  ),
  'up' => 
  array (
    0 => 'ref.math.php',
    1 => 'Math 関数',
  ),
  'prev' => 
  array (
    0 => 'function.fpow.php',
    1 => 'fpow',
  ),
  'next' => 
  array (
    0 => 'function.hypot.php',
    1 => 'hypot',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'ja',
    'path' => 'reference/math/functions/hexdec.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.hexdec" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">hexdec</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">hexdec</span> &mdash; <span class="dc-title">16 進数を 10 進数に変換する</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-function.hexdec-description">
  <h3 class="title">説明</h3>
   <div class="methodsynopsis dc-description">
    <span class="methodname"><strong>hexdec</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$hex_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">
   引数 <code class="parameter">hex_string</code> により指定された 16 進数に
   等価な 10 進数を返します。<span class="function"><strong>hexdec()</strong></span> は、16 進数を
   表す文字列を 10 進数に変換します。
  </p>
  <p class="para">
   <span class="function"><strong>hexdec()</strong></span> は、16 進数以外の文字を一切無視します。
   PHP 7.4.0 以降では、無効な文字を与えることは推奨されません。
  </p>
 </div>

 <div class="refsect1 parameters" id="refsect1-function.hexdec-parameters">
  <h3 class="title">パラメータ</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">hex_string</code></dt>
     <dd>
      <p class="para">
       変換したい 16 進文字列。
      </p>
     </dd>
    
   </dl>
  </p>
 </div>

 <div class="refsect1 returnvalues" id="refsect1-function.hexdec-returnvalues">
  <h3 class="title">戻り値</h3>
  <p class="para">
   <code class="parameter">hex_string</code> を 10 進で表した値を返します。
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.hexdec-changelog">
  <h3 class="title">変更履歴</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>バージョン</th>
      <th>説明</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
      <td>7.4.0</td>
      <td>
       無効な文字を与えると、非推奨の警告が出るようになりました。
       結果は不正な文字がなかったかのように計算されます。
      </td>
     </tr>

    </tbody>
   
  </table>

 </div>



 <div class="refsect1 examples" id="refsect1-function.hexdec-examples">
  <h3 class="title">例</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>例1 <span class="function"><strong>hexdec()</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 />var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">hexdec</span><span style="color: #007700">(</span><span style="color: #DD0000">"ee"</span><span style="color: #007700">)); </span><span style="color: #FF8000">// prints "int(238)"<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">hexdec</span><span style="color: #007700">(</span><span style="color: #DD0000">"a0"</span><span style="color: #007700">)); </span><span style="color: #FF8000">// prints "int(160)"<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

   </div>
  </p>
  <p class="para">
   <div class="example" id="example-2">
    <p><strong>例2 不正な文字を <span class="function"><strong>hexdec()</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 />var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">hexdec</span><span style="color: #007700">(</span><span style="color: #DD0000">"See"</span><span style="color: #007700">));  </span><span style="color: #FF8000">// print "int(238)"<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">hexdec</span><span style="color: #007700">(</span><span style="color: #DD0000">"that"</span><span style="color: #007700">)); </span><span style="color: #FF8000">// print "int(10)"<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

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


 <div class="refsect1 notes" id="refsect1-function.hexdec-notes">
  <h3 class="title">注意</h3>
  <blockquote class="note"><p><strong class="note">注意</strong>: 
   <p class="para">
    この関数は、プラットフォームの <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> で返します。
   </p>
  </p></blockquote>
 </div>

 <div class="refsect1 seealso" id="refsect1-function.hexdec-seealso">
  <h3 class="title">参考</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.dechex.php" class="function" rel="rdfs-seeAlso">dechex()</a> - 10 進数を 16 進数に変換する</span></li>
    <li><span class="function"><a href="function.bindec.php" class="function" rel="rdfs-seeAlso">bindec()</a> - 2 進数 を 10 進数に変換する</span></li>
    <li><span class="function"><a href="function.octdec.php" class="function" rel="rdfs-seeAlso">octdec()</a> - 8 進数を 10 進数に変換する</span></li>
    <li><span class="function"><a href="function.base-convert.php" class="function" rel="rdfs-seeAlso">base_convert()</a> - 数値の基数を任意に変換する</span></li>
   </ul>
  </p>
 </div>

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