admin 发表于 2023-2-16 18:54:55

PHP中可变长度可变变量

<div id="article_content" class="article_content clearfix">
      <link rel="stylesheet" href="https://csdnimg.cn/release/blogv2/dist/mdeditor/css/editerView/kdoc_html_views-1a98987dfd.css">
      <link rel="stylesheet" href="https://csdnimg.cn/release/blogv2/dist/mdeditor/css/editerView/ck_htmledit_views-6e43165c0a.css">
                <div id="content_views" class="htmledit_views">
                  <p>普通变量</p>
<pre><code><?php
$a &#61; 'hello';
?>
</code></pre>
<p>可变变量</p>
<pre><code><?php
$$a &#61; 'world';
?></code></pre>
<p><?php<br> echo &#34;$a ${$a}&#34;;<br> ?></p>
<p></p>
<p></p>
                </div>
      </div>
      <div id="treeSkill"></div>
页: [1]
查看完整版本: PHP中可变长度可变变量