我有一个这样的数组
'sections' => array(
array(
'title' => 'License',
'id' => 'license'
),
array(
'title' => 'General',
'id' => 'general'
),
array(
'title' => 'Header',
'id' => 'header'
),
array(
'title' => 'Footer',
'id' => 'footer'
),
array(
'title' => 'Slider',
'id' => 'slider'
),
)
如果许可证无效,我只想显示许可证选项卡。所以我想在这样的数组中使用 if else 语句
'sections' => array(
array(
'title' => 'License',
'id' => 'license'
),
if ($license_valid) {
array(
'title' => 'General',
'id' => 'general'
),
array(
'title' => 'Header',
'id' => 'header'
),
array(
'title' => 'Footer',
'id' => 'footer'
),
array(
'title' => 'Slider',
'id' => 'slider'
),
}
)
有人能告诉我正确的使用方法吗?