Logo

Programming-Idioms

History of Idiom 55 > diff from v63 to v64

Edit summary for version 64 by mins01:
[PHP] delete line

Version 63

2018-02-21, 09:14:09

Version 64

2018-02-21, 09:15:04

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}";
Code
$s = (string)$i;
$s = "{$i}";