我有以下一段php代码:
<?php
if(get_theme_mod('typography_setting')=='small')
{
echo '12';
}
else if(get_theme_mod('typography_setting')=='standard')
{
echo '13';
}
else if(get_theme_mod('typography_setting')=='big')
{
echo '14';
}
else if(get_theme_mod('typography_setting')=='huge')
{
echo '15';
}
?>
基本上说,如果排版设置是小回声12,标准 - 回声13,大回声14,巨大 - 回声15。
我知道这段代码工作正常,但我想学习使用数组,我想知道这段代码是否可以通过使用数组来简化?
答案 0 :(得分:6)
不是火箭科学:
$font_sizes = array(
'small' => 12,
'standard' => 13,
...
);
$size = get_theme_mod('typography_setting');
if( isset($font_sizes[$size]) ){
echo $font_sizes[$size];
}
您还可以通过更充分地使用 Enter 键来增强代码。