URL查询字符串

时间:2018-09-03 15:17:31

标签: php wordpress get

我下载了BeRocket AJAX过滤器插件,它改变了我的url查询字符串的格式,现在我获取产品图片的功能不起作用。

这就是我获取查询字符串的方式;

<php $filter_colour = $_GET['filter_colour']; ?>

当我的查询字符串是这样时,这很好用;

www.website.co.uk/?filter_color=blue&filter_type_of_light=something

但是现在我只能通过更改插件中的设置来获得如下查询字符串;

www.website.co.uk/?filters=type-of-light[550]|colour[569]
www.website.co.uk/?filters=type-of-light[ceiling-lights]|colour[pink]
www.website.co.uk/filters/type-of-light=ceiling-lights&colour=green

如何仍然可以通过这些链接使用$ _GET获取网址中的color值?

在wordpress的“永久链接”选项卡中也有这些设置,可以用来更改查询字符串;

enter image description here

enter image description here

enter image description here

这些是我在插件中用于查询字符串的选项;

enter image description here

这是我使用$ _GET获取颜色值的函数,我使用此函数设置产品上的图像;

remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10);
add_action( 'woocommerce_before_shop_loop_item_title', 'set_product_image', 10);

function set_product_image() {
    global $product;

    if( $product->is_type('variable') ){
        // color of first variation
        $default_image = '';

        foreach ( $product->get_visible_children() as $variation_id ){            
            $variation = wc_get_product( $variation_id );
            $product_colour = strtolower( $variation->get_attribute('colour') );

            // get first variation
            if( $default_image == '' ){
                $default_image = $variation->get_image( array(300, 300) );
            }
            $filter_colour = $_GET['colour'];

            if( $product_colour == $filter_colour){
                // if filter applied, echo and return
                echo $variation->get_image( array(300, 300) );
                return;
            }
        }
        // filter not applied, return default image
        echo $default_image ;
    }

    else if( $product->is_type('simple') ){
        if ( has_post_thumbnail() ) {
            echo $product->get_image( array(300, 300) );
        }else{
            echo '<img src="https://website.co.uk/wp-content/themes/dist/images/placeholder.png">';
        }
    }
}

2 个答案:

答案 0 :(得分:1)

使用此URL结构-http://www.website.co.uk/?filters=type-of-light[ceiling-lights]|colour[pink]粘贴。您可以按照@ user3783243的建议使用正则表达式,也可以使用PHP explode。这是最简单但不正确的方法之一。

$colortemp = explode('colour[', $_GET['filters']);
$colortemp1 = explode(']', $colortemp[1]);
$color = $colortemp[0];

然后,您可以像$filter_colour = $color;这样的函数进行替换。

希望这会有所帮助。

答案 1 :(得分:1)

对于两个示例字符串,您可以使用正则表达式来标识所需的位。对于第三个示例,colour应该是其自己的索引,因此只需按原样进行抓取即可。对于其他两个搜索colour[,然后捕获所有内容,直到第一个]。这会将值作为$color索引放入1中。因为它是第一个捕获组,所以它是1索引,0索引具有完全匹配项。另外,如果u中的colour是可选的,则可以在其后添加?

if(empty($_GET['colour'])){
    if(preg_match('/colour\[(.*?)\]/', $_GET['filters'], $color)){
            echo $color[1] . PHP_EOL;
    }
} else {
     echo $_GET['colour'];//just for demo purposes, will open XSS injection, escape for real usage
}

运行中的PHP:https://3v4l.org/SbAvR