PHP:如何从键中带有连字符/破折号的关联数组中提取()值?

时间:2016-06-23 19:14:44

标签: php wordpress extract hyphen

我指的是WordPress Shortcode API。是否可以从关键数组中使用带有连字符/短划线的值来显示<{1}}现在的

这是关于{{3}}的旧版本。例如:

extract()

2 个答案:

答案 0 :(得分:4)

shortcode_atts返回一个数组,所以只需使用它。

function bartag_func( $atts ) {
    $params = shortcode_atts( array(
        'foo-bar' => 'something'
    ), $atts ) );

    return "foo = " . $params['foo-bar'];
}
add_shortcode( 'bartag', 'bartag_func' );

答案 1 :(得分:3)

It is still not possible。但是,对于PHP.net引擎,我有an RFC under discussion可以在PHP 8中实现。