Logo

Programming-Idioms

History of Idiom 142 > diff from v31 to v32

Edit summary for version 32 by ancarda:
[PHP] Remove opening tag; not required for this website's syntax highlighting

Version 31

2019-09-26, 21:09:05

Version 32

2019-09-26, 22:21:22

Idiom #142 Hexadecimal digits of an integer

Assign to string s the hexadecimal representation (base 16) of integer x.

E.g. 999 -> "3e7"

Idiom #142 Hexadecimal digits of an integer

Assign to string s the hexadecimal representation (base 16) of integer x.

E.g. 999 -> "3e7"

Extra Keywords
hex hexa radix
Extra Keywords
hex hexa radix
Code
<?php

$s = dechex(999);
Code
$s = dechex(999);
Doc URL
https://secure.php.net/manual/en/function.dechex.php
Doc URL
https://secure.php.net/manual/en/function.dechex.php
Demo URL
https://3v4l.org/LhR7S
Demo URL
https://3v4l.org/LhR7S