/manuals/php/function.dechex.html

https://github.com/vsilent/vim · HTML · 105 lines · 89 code · 16 blank · 0 comment · 0 complexity · e14b9dcbf266952badb32876886650d1 MD5 · raw file

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <head>
  4. <title>Decimal to hexadecimal</title>
  5. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  6. </head>
  7. <body><div style="text-align: center;">
  8. <div class="prev" style="float: left;"><a href="function.decbin.html">decbin</a></div>
  9. <div class="next" style="float: right;"><a href="function.decoct.html">decoct</a></div>
  10. <div class="up"><a href="ref.math.html">Математические функции</a></div>
  11. <div class="home"><a href="index.html">PHP Manual</a></div>
  12. </div><hr /><div id="function.dechex" class="refentry">
  13. <div class="refnamediv">
  14. <h1 class="refname">dechex</h1>
  15. <p class="verinfo">(PHP 4, PHP 5)</p><p class="refpurpose dc-title">dechex Decimal to hexadecimal</p>
  16. </div>
  17. <div class="refsect1 description">
  18. <h3 class="title">Описание</h3>
  19. <div class="methodsynopsis dc-description">
  20. <span class="type">string</span> <span class="methodname"><b><b>dechex</b></b></span>
  21. ( <span class="methodparam"><span class="type">int</span> <tt class="parameter">$number</tt></span>
  22. )</div>
  23. <p class="para rdfs-comment">
  24. Returns a string containing a hexadecimal representation of the
  25. given <i><tt class="parameter">number</tt></i>
  26. argument. The largest number that can
  27. be converted is 4294967295 in decimal resulting to &quot;ffffffff&quot;.
  28. </p>
  29. </div>
  30. <div class="refsect1 parameters">
  31. <h3 class="title">Список параметров</h3>
  32. <p class="para">
  33. <dl>
  34. <dt>
  35. <span class="term"><i><tt class="parameter">number</tt></i>
  36. </span>
  37. <dd>
  38. <p class="para">
  39. Decimal value to convert
  40. </p>
  41. </dd>
  42. </dt>
  43. </dl>
  44. </p>
  45. </div>
  46. <div class="refsect1 returnvalues">
  47. <h3 class="title">Возвращаемые значения</h3>
  48. <p class="para">
  49. Hexadecimal string representation of <i><tt class="parameter">number</tt></i>
  50. </p>
  51. </div>
  52. <div class="refsect1 examples">
  53. <h3 class="title">Примеры</h3>
  54. <p class="para">
  55. <div class="example">
  56. <p><b>Пример #1 <b>dechex()</b> example</b></p>
  57. <div class="example-contents">
  58. <div class="phpcode"><code><span style="color: #000000">
  59. <span style="color: #0000BB">&lt;?php<br /></span><span style="color: #007700">echo&nbsp;</span><span style="color: #0000BB">dechex</span><span style="color: #007700">(</span><span style="color: #0000BB">10</span><span style="color: #007700">)&nbsp;.&nbsp;</span><span style="color: #DD0000">"\n"</span><span style="color: #007700">;<br />echo&nbsp;</span><span style="color: #0000BB">dechex</span><span style="color: #007700">(</span><span style="color: #0000BB">47</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span>
  60. </span>
  61. </code></div>
  62. </div>
  63. <div class="example-contents"><p>Результат выполнения данного примера:</p></div>
  64. <div class="example-contents"><pre>
  65. <div class="cdata"><pre>
  66. a
  67. 2f
  68. </pre></div>
  69. </pre></div>
  70. </div>
  71. </p>
  72. </div>
  73. <div class="refsect1 seealso">
  74. <h3 class="title">Смотрите также</h3>
  75. <p class="para">
  76. <ul class="simplelist">
  77. <li class="member"><a href="function.hexdec.html" class="function" rel="rdfs-seeAlso">hexdec()</a></li>
  78. <li class="member"><a href="function.decbin.html" class="function" rel="rdfs-seeAlso">decbin()</a></li>
  79. <li class="member"><a href="function.decoct.html" class="function" rel="rdfs-seeAlso">decoct()</a></li>
  80. <li class="member"><a href="function.base-convert.html" class="function" rel="rdfs-seeAlso">base_convert()</a></li>
  81. </ul>
  82. </p>
  83. </div>
  84. </div><hr /><div style="text-align: center;">
  85. <div class="prev" style="float: left;"><a href="function.decbin.html">decbin</a></div>
  86. <div class="next" style="float: right;"><a href="function.decoct.html">decoct</a></div>
  87. <div class="up"><a href="ref.math.html">Математические функции</a></div>
  88. <div class="home"><a href="index.html">PHP Manual</a></div>
  89. </div></body></html>