Home >Backend Development >PHP Tutorial >Definition and use of php dynamic variables, php dynamic variables_PHP tutorial

Definition and use of php dynamic variables, php dynamic variables_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-13 09:51:16939browse

Definition and use of php dynamic variables, php dynamic variables

The examples in this article describe the definition and use of php dynamic variables. Share it with everyone for your reference. The details are as follows:

<&#63;php 
$var_name = "ic"; //定义变量$var_name 
$$var_name = "This is Simon"; //使用$var_name的值作为这个变量的变量名 
echo $var_name."<BR>"; //输出$var_name,即变量名 
echo $$var_name."<BR>"; //输出变量的值 
echo $ic."<BR>"; //使用这个方法可以实现同样的变量调用 
&#63;>

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1014427.htmlTechArticlephp dynamic variable definition and use, php dynamic variables This article describes the definition and use of php dynamic variables with examples. Share it with everyone for your reference. The details are as follows: php $var_name = "ic";...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn