复制代码 代码如下:<?phpclass 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()函数,就相当于一个数组常量。