HTML(or XML) & CSS & JavaScript

[PHP] 문자열 합치기 (String concatenation)

YEJI ⍢ 2022. 12. 12. 14:07
728x90

PHP에서 문자열을 합칠 때에는 .(dot), ,(comma)를 사용합니다.

<!EOCTYPE html>
<body>
	<h1>My first PHP page</h1>
	<?php
		echo "Hello ", "world! <br>";
		echo "Hello ". "world!";
	?>
</body>

◡̈