目前我正在使用php geoip_country_code_by_name函数从一个如下所示的数组中为不同国家/地区提供不同的内容:
<?php
$content = array(
'GB' => array(
'meta_description' => "Description is here",
'social_title' => "Title here",
'country_content_js' => "js/index.js",
),
'BR' => array(
'meta_description' => "Different Description is here",
'social_title' => "Another Title here",
'country_content_js' => "js/index-2.js",
),
);
?>
但我只有巴西和英国的具体内容。我希望访问该页面的任何其他国家/地区都可以提供与BR和GB不同的默认内容数组。
有没有办法创建一个规则,为我的数组中未指定的任何国家/地区提供默认内容集?
答案 0 :(得分:1)
$content = array(
'GB' => array(
'meta_description' => "Description is here",
'social_title' => "Title here",
'country_content_js' => "js/index.js",
),
'BR' => array(
'meta_description' => "Different Description is here",
'social_title' => "Another Title here",
'country_content_js' => "js/index-2.js",
)
);
您可以使用其他“默认”键来引用密钥,如此;
$content['Default'] =& $content["GB"];
var_dump($content);
exit;
Alternatvly,如果您订购了从DB或其他地方返回的值,您可以像这样读取数组的第一个条目; $ aDefault =&amp; $含量[array_keys($内容)[0]];
或者您可以定义默认语言并读取该数组键,但与之前的方法不同,它必须位于数组中。
// define default
define("DEFAULT_LANGUAGE", 'GB');
// would need to guarentee its there
$aDefault =& $content[DEFAULT_LANGUAGE];
最后你可以将上述内容组合在一起,如果它找不到那种语言就可以使用第一个可用的语言;
// define, can be placed in an included config folder
define("DEFAULT_LANGUAGE", 'GB');
$content = array(
'GBs' => array(
'meta_description' => "Description is here",
'social_title' => "Title here",
'country_content_js' => "js/index.js",
),
'BR' => array(
'meta_description' => "Different Description is here",
'social_title' => "Another Title here",
'country_content_js' => "js/index-2.js",
)
);
// does the default language exist?
if( isset($content[DEFAULT_LANGUAGE]) ){
// yes, create a default array key and reference the required element in the array
$content['Default'] =& $content[DEFAULT_LANGUAGE];
}else{
// no, create a default array key and reference the first element
$content['Default'] =& $content[array_keys($content)[0]];
}
var_dump($content);
exit;