<?php $result = []; $fetch_elements = ['property', 'price']; $_SERVER['QUERY_STRING'] = 'https://www.example.com?id=safety&order=1&price=0..995&property[172]=Canasafe'; parse_str(parse_url($_SERVER['QUERY_STRING'], PHP_URL_QUERY), $elements); foreach ($elements as $k=>$e) { if (in_array($k, $fetch_elements)) { $result[$k] = $e; } } // print_r($result); echo urldecode(http_build_query($result));
You have javascript disabled. You will not be able to edit any code.