王新阳

wangxinyang

文本内容return array()的使用

方法一:
a.txt或a.php内容:
return array(
    0 => 'hello',
    1 => 'world',
);

调用:
<?php
$arr = eval(file_get_contents('a.txt'));
?>


方法二:
a.php内容:

<?php
return array(
    0 => 'hello',
    1 => 'world',
);
?>

调用:
<?php
$arr = @include $path.'a.php';
?>
2015-12-30
2024-11-23 星期六 农历十月二十三