PHP에서 문자열 결합 (더하기) 연산자

*** 검색어: nabiro, PHP, 문자열 연산자, 문자열, 연산자, 합치기, 결합, 더하기

두 개의 string을 합치는 문자열 연산자

//
$strA = "Hello";
$strB = "World";

$strC = $strA . " " . $strB;
echo  "strC=" . $strC;
//

결과는 strC=Hello World 와 같습니다.

댓글

Designed by JB FACTORY