php变量的几种写法

一、最简单的

  1. $str = 'Hello World!';

二、来个变种

  1. $str = 'good';
  2. $good = 'test';
  3. $test = 'Hello World!';
  4. echo $$$str; // Hello World!

应该都能明白吧。

三、放在引号内的

  1. $str = 'Hello World!';
  2. echo '$str';// $str
  3. echo "$str";// Hello World!

四、list方法来接收

  1. list($a, $b, $c, $d) = array(1, 2, 3, 4);
  2. echo $a, $b, $c, $d; // 1234

五、界定符

  1. $num = '11';
  2. $str = <<<EOT
  3. CREATE TABLE IF NOT EXISTS `tp_info` (
  4. `id` int({$num}) NOT NULL AUTO_INCREMENT,
  5. `name` varchar(60) NOT NULL,
  6. PRIMARY KEY (`id`)
  7. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1
  8. EOT;

六、高大上的

  1. $toUserName = 'fans';
  2. $fromUserName = 'molaifeng';
  3. $createTime = time();
  4. $msgType = 'text';
  5. $content = '高大上';
  6. $textTpl = "<xml>
  7. <ToUserName><![CDATA[%s]]></ToUserName>
  8. <FromUserName><![CDATA[%s]]></FromUserName>
  9. <CreateTime>%s</CreateTime>
  10. <MsgType><![CDATA[%s]]></MsgType>
  11. <Content><![CDATA[%s]]></Content>
  12. <FuncFlag>0</FuncFlag>
  13. </xml>";
  14. echo sprintf($textTpl, $toUserName, $fromUserName, $createTime, $msgType, $content);

【update】

最近刚好把C的语法学完,正好有个知识点是对PHP有用的。因为PHP是用C编写的,在ANSI C中,对标记解析使用“maximal munch strategy(最大一口策略)”,这种策略表示如果下一个标记有超过一种的解释方案,编译器将选取能组成最长字符序列的方案。

    1. $a = 2;
    2. $aa = 22;
    3. $aaa = 222;
    4. echo "$aaa"; // 222
上一篇:There is no PasswordEncoder mapped for the id "null"


下一篇:Oracle系列教程