时间:2021-07-01 10:21:17 帮助过:18人阅读
代码如下:
<?php
class Test
{
const MY_ARR="return array(\"a\",\"b\",\"c\",\"d\");";
public function getConstArray()
{
return eval(Test::MY_ARR);//eval()函数把字符串作为PHP代码执行
}
}
$t=new Test();
print_r($t->getConstArray());
?>
上面代码中,getConstArray()函数,就相当于一个数组常量。