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

PHP_可变变量

时间:2015-08-06 20:00:25      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:

一、可变变量的使用:

  有时候使用可变变量名是很方便的。就是说,一个可变变量获取了一个普通变量的值作为这个可变变量的变量名。可以有多层

<?php
    $a = ‘hello‘;            //普通变量
    $$a = ‘world’;            //可变变量  
  
   echo "$a ${$a}";            //输出:hello world
    echo "$a $hello";        //输出:hello world
?>

 

PHP_可变变量

标签:

原文地址:http://www.cnblogs.com/LO-ME/p/4708774.html

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