What are mutable variables in php?

怪我咯
Release: 2023-03-10 20:50:02
Original
2268 people have browsed it

VariableVariable is a unique variable in PHP that allows the name of a variable to be dynamically changed. Sometimes it is convenient to use variable variable names. That is, the variable name of a variable can be set and used dynamically. An ordinary variable is set through declaration, for example:

<?php
$a = &#39;hello&#39;;
?>
Copy after login

A variable variable obtains the value of an ordinary variable as the variable name of the variable variable. In the above example, hello can be used as a variable variable after using two dollar signs ($). For example:

<?php
$$a = &#39;world&#39;;
?>
Copy after login

At this time, two variables are defined: the content of $a is "hello" and the content of $hello is "world". Therefore, it can be expressed as:

<?php
echo "$a ${$a}";
?>
Copy after login

The following writing is more accurate and will output the same result:

<?php
echo "$a $hello";
?>
Copy after login

They will both output:

hello world。
Copy after login

The following I think it’s easier to understand! ! demo

<?
 $a="whfbbs";
 $$a=&#39;b&#39;;
 echo $whfbbs;
?>
Copy after login

//Output b

The above is the detailed content of What are mutable variables in php?. For more information, please follow other related articles on the PHP Chinese website!

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!