码迷,mamicode.com
首页 > Web开发 > 详细

BOTC软件开发模型思想之核心代码区分——php示例005

时间:2015-09-14 14:01:57      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

<?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 \\";   //自行验证输出结果
?>

技术分享

BOTC软件开发模型思想之核心代码区分——php示例005

标签:

原文地址:http://my.oschina.net/u/212434/blog/505820

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!