<code class="lang-php">define('DBNAME','test'); $val = 'DBNAME'; echo eval($val); </code>
<code class="lang-php">define('DBNAME','test'); $val = 'DBNAME'; echo eval($val); </code>
火速解答
eval
是安全性最差的实践,几乎没有之一。请永远不要使用eval
。
使用字符串作为名称请求常量的值,请直接用constant
函数。
<code class="lang-php">define("MAXSIZE", 100); echo MAXSIZE; echo constant("MAXSIZE"); // same thing as the previous line </code>