quanshiyinian 发表于 2014-10-17 23:10:57

php变量当中,字符串的拼接以及字符串的转义





/*
转义,在单引号中\' => ',\\ =>\
在双引号中认识的转义相对多一些,如\" , \n(换行),"\t (tag制表符)
*/

$star="hello\"\n world";
echo $star;

//字符串的拼接

echo '<br/>';

$star01='hello';
$star02='world';
$star= $star01.$star02;
echo $star;


页: [1]
查看完整版本: php变量当中,字符串的拼接以及字符串的转义