PHP文件如何引用另外一个文件的数组?
另外一个文件的数组如下:<?phpreturnarray(23=>array('template_category'=>'category_product','templ...
另外一个文件的数组如下:
<?php
return array (
23 =>
array (
'template_category' => 'category_product',
'template_list' => 'list_product',
'template_show' => 'show_product',
),
37=>
array(
'template_category' => 'cproduct',
'template_list' => 'lproduct',
'template_show' => 'sproduct',
)
?>
该数组文件是一个缓存文件,不可更改。
如果用另一个PHP文件来调用该数组,如何取得里面的数据呢? 展开
<?php
return array (
23 =>
array (
'template_category' => 'category_product',
'template_list' => 'list_product',
'template_show' => 'show_product',
),
37=>
array(
'template_category' => 'cproduct',
'template_list' => 'lproduct',
'template_show' => 'sproduct',
)
?>
该数组文件是一个缓存文件,不可更改。
如果用另一个PHP文件来调用该数组,如何取得里面的数据呢? 展开
3个回答
展开全部
引入,用require加上你的数组文件,引入到这个php文件中。看你这个代码,可以引入后直接用变量接收
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$file = fopen("myfile", "r");
while (!feof($file)) {
$line = fgets($file);
echo $line;
}
fclose($file);
while (!feof($file)) {
$line = fgets($file);
echo $line;
}
fclose($file);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询