Home  >  Article  >  Backend Development  >  php . and .=

php . and .=

WBOY
WBOYOriginal
2016-08-08 09:27:45943browse

.String concatenation

.=String concatenation assignment

Source code:

$a = "z21";

$b = $a . "seven";

echo $b;

echo "
";

$c = "z21";

$c .="seven"; // $ c=$c+"seven"

echo $c;

?>

Output:

z21seven

z21seven

The above introduces php . and .=, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn