The safest “correct” method would be:
- Parse the url into an array with
parse_url()
- Extract the query portion, decompose that into an array using
parse_str()
- Delete the query parameters you want by
unset()
them from the array - Rebuild the original url using
http_build_query()
Quick and dirty is to use a string search/replace and/or regex to kill off the value.
Related Contents:
- Strip off URL parameter with PHP
- Trying to get property of non-object
- How should a model be structured in MVC? [closed]
- How to pass an array within a query string?
- How can I implement an Access Control List in my Web MVC application?
- MVC for advanced PHP developers [closed]
- Understanding MVC Views in PHP
- PHP file_get_contents() returns “failed to open stream: HTTP request failed!”
- Get URL query string parameters
- How to remove the querystring and get only the url?
- Architecture more suitable for web apps than MVC?
- Access query string values from Laravel
- joomla password encryption
- Can I call a Model from a View?
- Joomla 3.2.1 password encryption
- What is the right way to handle $_POST data in MVC?
- Understanding MVC: Whats the concept of “Fat” on models, “Skinny” on controllers?
- Logging In To Joomla 1.5 Using External Form (not within joomla folder, but on same server)
- in MVC, where do you draw the line between a controller and model? [closed]
- Enabling $_GET in codeigniter
- Laravel 3 : Looking for explanation how to use the model
- PHP mail function doesn't complete sending of e-mail
- QuickBooks Desktop Integration required in php
- How to deal with mysqli problems? mysqli_fetch_array(): Argument #1 must be of type mysqli_result
- Finding cartesian product with PHP associative arrays
- Search Form with One or More (Multiple) Parameters
- PHP PDO: charset, set names?
- Can I extend a class using more than 1 class in PHP?
- How to set HTTP header to UTF-8 using PHP which is valid in W3C validator
- Measuring the distance between two coordinates in PHP
- Incorrect Integer (2147483647) is inserted into MySQL?
- How do I iterate over the results in a MySQLi result set?
- What is the difference between MySQL, MySQLi and PDO? [closed]
- Get Last Part of URL PHP
- PHP convert string to hex and hex to string
- PHP file_get_contents very slow when using full url
- How can I add all of my array values together in PHP?
- Difference between & and && in PHP
- Turn off deprecated errors in PHP 5.3
- How to tell if a session is active? [duplicate]
- how to enable sqlite3 for php?
- Pass a percent (%) sign in a url and get exact value of it using php
- Access a file which is located before / outside the server root directory?
- Remove non-numeric characters (excluding periods and commas) from a string (i.e. remove all characters except numbers, commas, and periods)
- Get variable from PHP file using JQuery/AJAX
- php count xml elements
- Session lost after page redirect in php
- php password_verify() hash and pass won’t match
- New containing div after every 3 records
- In PHP, is there an easy way to get the first and last date of a month?