php动态变量定义及使用_php技巧

WBOY
Release: 2016-05-16 20:14:07
Original
1173 people have browsed it

本文实例讲述了php动态变量定义及使用方法。分享给大家供大家参考。具体如下:

<&#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

希望本文所述对大家的php程序设计有所帮助。

Related labels:
php
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