(PHP 4, PHP 5, PHP 7)
dechex — ʮ����ת��Ϊʮ������
$number
) : string
����һ�ַ����������и���
number
������ʮ�����Ʊ�ʾ��
����ת���������ֵΪʮ���Ƶ�
PHP_INT_MAX
* 2 + 1 (��
-1)���� 32 λƽ̨����ʮ���Ƶ� 4294967295���� dechex() �Ľ��Ϊ ffffffff��
number
��16���Ʊ�ʾ
Example #1 dechex() ����
<?php
echo dechex(10) . "\n";
echo dechex(47);
?>
�������̻������
a 2f
Example #2 �������� dechex() ����
<?php
// The output below assumes a 32-bit platform.
// Note that the output is the same for all values.
echo dechex(-1)."\n";
echo dechex(PHP_INT_MAX * 2 + 1)."\n";
echo dechex(pow(2, 32) - 1)."\n";
?>
�������̻������
ffffffff ffffffff ffffffff