标签:
<?php $a = ‘this is a simple string‘; // 使用单引号表示字符串 echo $a; $b = ‘what\‘s this?‘; // 显示字符串中的单引号 $c = ‘name:‘.‘Simon.‘; // 多个字符串之间可以使用”.”连接 echo ‘this is a simple string $a‘; // 单引号中包含变量,照原样输出 echo "<br>"; echo ‘this is \t a \n simple string \\‘; //自行验证输出结果 ?>
<?php $a = "this is a simple string"; // 使用双引号表示字符串 echo $a; echo "<br>"; $b = "what‘s this? "; // 显示字符串中的单引号 $c = "name: "."Mick. "; // 多个字符串之间可以使用”.”连接 echo "this is a simple string $a"; // 双引号中包含变量,使用变量值替换 echo "<br>"; echo "this is a simple string ${a}s"; // 合理使用花括号 echo "<br>"; echo "this is \t a \n simple string \\"; //自行验证输出结果 ?>
标签:
原文地址:http://my.oschina.net/u/212434/blog/505820