php如何使用数组来简化代码

php how to use an array to simplify code

我有以下一段 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。

我知道这段代码工作正常,但我想了解如何使用数组,我想知道是否可以通过使用数组来简化这段代码?

不是火箭科学:

$font_sizes = array(
    'small' => 12,
    'standard' => 13,
    ...
);

$size = get_theme_mod('typography_setting');
if( isset($font_sizes[$size]) ){
    echo $font_sizes[$size];
}

您还可以通过更频繁地使用 Enter 键来增强您的代码。