我有一系列Google字体设置,如下所示:
$googleFontList = array(
'Abril Fatface' => array(
'link_code' => 'Abril+Fatface',
'css_name' => 'Abril Fatface',
'normal_weight' => 400,
'bold_weight' => 700,
),
'Archivo Narrow' => array(
'link_code' => 'Archivo+Narrow:400italic,400,700italic,700',
'css_name' => 'Archivo Narrow',
'normal_weight' => 400,
'bold_weight' => 700,
),
'Arvo' => array(
'link_code' => 'Arvo:400italic,400,700italic,700',
'css_name' => 'Arvo',
'normal_weight' => 400,
'bold_weight' => 700,
),
'Crete Round' => array(
'link_code' => 'Crete+Round:400italic,400',
'css_name' => 'Crete Round',
'normal_weight' => 400,
'bold_weight' => 700,
),
'Droid Serif' => array(
'link_code' => 'Droid+Serif:400italic,400,700italic,700',
'css_name' => 'Droid Serif',
'normal_weight' => 400,
'bold_weight' => 700,
),
'Josefin Slab' => array(
'link_code' => 'Josefin+Slab:400,400italic,700,700italic',
'css_name' => 'Josefin Slab',
'normal_weight' => 400,
'bold_weight' => 700,
),
'Lato' => array(
'link_code' => 'Lato:400italic,400,700,700italic',
'css_name' => 'Lato',
'normal_weight' => 400,
'bold_weight' => 700,
),
'Merriweather' => array(
'link_code' => 'Merriweather:400italic,400,700italic,700',
'css_name' => 'Merriweather',
'normal_weight' => 400,
'bold_weight' => 700,
),
'Open Sans' => array(
'link_code' => 'Open+Sans:400,400italic,700italic,700',
'css_name' => 'Open Sans',
'normal_weight' => 400,
'bold_weight' => 700,
),
'Oswald' => array(
'link_code' => 'Oswald:400,700',
'css_name' => 'Oswald',
'normal_weight' => 400,
'bold_weight' => 700,
),
'Roboto' => array(
'link_code' => 'Roboto:400,400italic,700,700italic',
'css_name' => 'Roboto',
'normal_weight' => 400,
'bold_weight' => 700,
),
'Roboto Condensed' => array(
'link_code' => 'Roboto+Condensed:400,400italic,700,700italic',
'css_name' => 'Roboto Condensed',
'normal_weight' => 400,
'bold_weight' => 700,
),
'Roboto Slab' => array(
'link_code' => 'Roboto+Slab:400,400italic,700,700italic',
'css_name' => 'Roboto Slab',
'normal_weight' => 400,
'bold_weight' => 700,
),
'Ubuntu' => array(
'link_code' => 'Ubuntu:400,400italic,700,700italic',
'css_name' => 'Ubuntu',
'normal_weight' => 400,
'bold_weight' => 700,
),
'Varela Round' => array(
'link_code' => 'Varela+Round',
'css_name' => 'Varela Round',
'normal_weight' => 400,
'bold_weight' => 700,
),
);
我想避免将此数组放在多个不同的控制器方法中。在哪里可以/我应该放这样的东西,以便以后可以调用控制器?这可能存在于配置文件中吗?
答案 0 :(得分:4)
您可以生成新的配置文件,例如在config文件夹中data.php
。返回一个这样的数组:
<?php
return [
'key' => 'value',
];
您可以通过
获取此变量Config::get('data.key');