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

WBOY
Release: 2016-07-13 09:51:16
Original
900 people have browsed it

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;>

Copy after login

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";...
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template