我在 functions.php 中创建了一个包含数组列表的函数:
function country_specs(){
$country_specs = array(
array('cc1', 'Country1', 'M1'),
array('cc2', 'Country2, 'M2'),
);
}
如何在另一个PHP页面中调用$country_specs
数组。
我尝试了以下方法:
country_specs();
foreach ($country_specs as $key => $value) {
echo $value[0];
}
但是没有工作。
答案 0 :(得分:1)
试用此代码
function country_specs(){
$country_specs = array( array('cc1', 'Country1', 'M1'),array('cc2', 'Country2', 'M2'), );
return $country_specs;
}
调用函数
$country_specs=country_specs();
foreach ($country_specs as $key => $value) { echo $value[0]; }
答案 1 :(得分:0)
尝试将其包含在您的第二个php文件中:
include 'functions.php';
这应该有用。