将变量传递给数组索引



以下是我的

foreach ( $post_formats as $format ) {
    if ( $options['show_post_formats'][$format] == 0 ) {
        $format = 'post-format-' . $format;
        array_push( $hide, $format );
    }
}

而且效果很好。。。但在调试时给了我一个未定义的索引:error,因为它希望$format的值在引号中。我该如何正确地做到这一点?

由于您不确定索引是否存在,您只需使用即可!empty()并检查数组键是否存在。

<?php 
foreach ( $post_formats as $format ) {
    if (!empty($format) && array_key_exists($format, $options['show_post_formats']) && $options['show_post_formats'][$format] == 0 ) {
        $format = 'post-format-' . $format;
        array_push( $hide, $format );
    }
}
?>

相关内容

  • 没有找到相关文章

最新更新