"PHP 문자열 연산자 ."의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-== 참고 자료 == +==참고==))
18번째 줄: 18번째 줄:
*[[PHP 배열 연산자 +]]
*[[PHP 배열 연산자 +]]


==참고 자료==
==참고==
*http://php.net/manual/en/language.operators.string.php
*http://php.net/manual/en/language.operators.string.php


[[분류: PHP 문자열]]
[[분류: PHP 문자열]]
[[분류: 연산자]]
[[분류: 연산자]]

2017년 6월 27일 (화) 12:42 판

1 개요

PHP String Operators
PHP 문자열 연산자
$a = "Hello ";
echo $a . "World!";
# Hello World!

$b = "Hello ";
$b .= "World!";
echo $b;
# Hello World!"

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}