Home >Backend Development >PHP Tutorial >php里面连接字符串用点来表示吗?这个有点看不懂

php里面连接字符串用点来表示吗?这个有点看不懂

WBOY
WBOYOriginal
2016-06-20 12:42:321126browse

但是这个里面我却看不懂  为什么有两个点和两个冒号  能解释一下吗  
 $str1 = "Hello World!";
  $str2 = "Welcome to HutaoW's BLOG!";
  $str3 = $str1 . " " . $str2;


回复讨论(解决方案)

很基础的问题了,  点用于连接, 两个冒号之间是字符串,意思就是把两个字符串连接起来,中间加个空格

$str1 . " " . $str2;  

连接2次自然要两个点了

php里面连接字符串用点来表示

哪来的 两个冒号?

php里面连接字符串用点来表示

哪来的 两个冒号?


说错了 是两个引号  为什么不是$str3 = $str1 . $str2;这样连接的啊   我认为应该是这样的啊

$str1 . " " . $str2;  

连接2次自然要两个点了


为什么连接两次啊  那个引号是干什么用的呢


$str1 . " " . $str2;  

连接2次自然要两个点了


为什么连接两次啊  那个引号是干什么用的呢
两个引号中间是个空格。意思是在两个字符串中间加个空格连接起来。

php的链接符号,是通过.作为连接。

其它编程语言貌似都是用 + 连接的。
PHP比较奇葩,用 . 连接。

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