Logo

Programming-Idioms

History of Idiom 142 > diff from v15 to v16

Edit summary for version 16 by ricardo_sdl:
New PHP implementation by user [ricardo_sdl]

Version 15

2018-06-12, 17:38:25

Version 16

2018-08-24, 12:51:40

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);
Doc URL
https://secure.php.net/manual/en/function.dechex.php
Demo URL
https://3v4l.org/LhR7S