test.php文件
<?php
return array(
'name' => 'andy',
'sex' => 'male'
);
?>
set.php文件
<?php
$set = include("test.php");
print_r($set);exit;
?>
test.php文件
<?php
return array(
'name' => 'andy',
'sex' => 'male'
);
?>
<?php
$set = include("test.php");
print_r($set);exit;
?>