当前位置: 移动技术网 > IT编程>开发语言>PHP > PHP 变量定义和变量替换的方法

PHP 变量定义和变量替换的方法

2019年05月04日  | 移动技术网IT编程  | 我要评论
有两种方法把变量替换到字符串中——简单的方法和复杂的方法。
简单的方法是把变量名放在双引号字符串或heredoc中:
$who = ‘kilroy';
$where = ‘here';
echo “$who was $where”;
kilroy was here
复杂的方法是把要替换的变量用大括号括起来。这种方法可以用于消除歧义或替换数组查找。大括号的经典作用是把变量名从周围的文本中分隔出来:
$n = 12;
echo “you are the {$n}th person”;
you are the 12th person
如果没有大括号的话,php就会尝试打印出变量$nth的值。
和一些shell环境不同,在php字符串中变量不会重复解析,而只处理在双引号字符串中的解析,然后把其结果被作为字符串的值:
$bar = ‘this is not printed';
$foo = ‘$bar'; // 单引号
print(”$foo”); //双引号
$bar
4.1.2 用单引号括起来的字符串
single-quoted strings
用单引号括起来的字符串并不替换变量。因为字符串直接量是用单引号括起来的,所以在下面的字符串中变量名没有被解析:
$name = ‘fred';
$str = ‘hello, $name'; // single-quoted 用单引号括起来
echo $str;
hello, $name
在用单引号括起来的字符串中唯一可用的转义序列是 \'(把单引号放在用单引号括起来的字符串中)、\\(把一个反斜杠放在用单引号括起来的字符串中)。任何其他的反斜杠只能被解释为一个反斜杠:
$name = ‘tim o\'reilly'; //转义的单引号
echo $name;
$path = ‘c:\\windows'; //转义的反斜杠
echo $path;
$nope = ‘\n'; // 不是转义序列
echo $nope;
tim o'reilly
c:\windows
\n
4.1.3 用双引号括起来的字符串
double-quoted strings
用双引号括起来的字符串将会进行变量解析并且允许使用许多转义序列。表4-1列出了在用双引号括起来的字符串中php认可的转义序列。
表4-1:用双引号括起来的字符串中的转义序列
转义序列 字符含义
\”
双引号
\n
换行
\r
回车
\t
制表符
\\
反斜杠
\$
美元符号
\{
左大括号
\}
右大括号
\[
左中括号
\]
右中括号
\0 through \777
用八进制表示的ascii字符
\x0 through \xff
用十六进制表示的ascii字符
如果在用双引号括起来的字符串中发现一个未知的转义序列(例如,一个反斜杠后跟一个不在表4-1中的字符),就忽略这个转义序列(如果警告级设置为e_notice,就会为这样的未知序列产生一个警告):
$str = “what is \c this?”; // 未知的转义序列
echo $str ;
what is \c this?
4.1.4 字符串定界
here documents heredoc
使用heredoc可以简单地把多行字符串放在程序中,如下所示:
$clerihew = <<< end_of_quote
sir humphrey davy
abominated gravy.
he lived in the odium
of having discovered sodium.
end_of_quote;
echo $clerihew;
sir humphrey davy
abominated gravy.
he lived in the odium
of having discovered sodium.
<<<符号(我们习惯称为字符串定界符――译者注)告诉php解析器你正在书写一个heredoc。在<<<符号和标识符(本例中即 end_of_quote)之间必须有一个空格,这样程序才可以辨别标识符。从下一行开始就是被引用的文本,直到它遇到仅由标识符组成的一行为止。
你可以把分号放在终止标识符的后面来结束语句,正如前面的代码所示。如果你在一个更复杂的表达式中使用heredoc,你需要将表达式分行来写:
printf(<<< template
%s is %d years old.
template
, “fred”, 35);
在heredoc中的单引号和双引号被跳过(当作一般的符号):
$dialogue = <<< no_more
“it's not going to happen!” she fumed.
he raised an eyebrow. “want to bet?”
no_more;
echo $dialogue;
“it's not going to happen!” she fumed.
he raised an eyebrow. “want to bet?”
在heredoc中的空白符也被保留:
$ws = <<< enough
boo
hoo
enough;
// $ws = ” boo\n hoo\n”;
因为在结尾终止符前的换行符将被移除,所以下面这两个赋值是相同的:
$s = ‘foo';
// same as 和下面的相同
$s = <<< end_of_pointless_heredoc
foo
end_of_pointless_heredoc;
如果想用一个换行符来结束heredoc引用的字符串,则需要自己额外加入:
$s = <<< end
foo

end;
//注意foo后面跟一个空行,不可删除

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网