Logo

Programming-Idioms

History of Idiom 153 > diff from v14 to v15

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

Version 14

2018-05-08, 00:50:41

Version 15

2018-08-24, 12:40:06

Idiom #153 Concatenate string with integer

Create string t as the concatenation of string s and integer i.

Idiom #153 Concatenate string with integer

Create string t as the concatenation of string s and integer i.

Extra Keywords
int concat
Extra Keywords
int concat
Code
$t = $s . $i;
Doc URL
https://secure.php.net/manual/en/language.operators.string.php
Demo URL
https://3v4l.org/ET6si