- 就是字符串的连接,能够将前后字符连接起来。
- 如果不是字符串,会自助转换为字符串。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <?php echo 'ab' . 'cd'; // abcd echo 'ab' . 12; // ab12 echo 12 . 34; // 1234 echo '12' . true; // 121, true 会被转为字符串 '1' echo '12' . false; // 12, false 会被转为空字符串 '' echo '12' . 'true'; // 12true ?> </body> </html>