Logo

Programming-Idioms

History of Idiom 55 > diff from v62 to v63

Edit summary for version 63 by mins01:
New PHP implementation by user [mins01]

Version 62

2018-01-22, 00:07:15

Version 63

2018-02-21, 09:14:09

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Illustration

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Illustration
Extra Keywords
int base radix conversion
Extra Keywords
int base radix conversion
Code
$s = ''.$i;
$s = (string)$i;
$s = "{$i}";