Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Check if url contains parameters [duplicate]

Tags:

url

php

Possible Duplicate:
keeping url parameters during pagination

I want to add a parameter to the current url with php, but how do I know if the url already contains a parameter?

Example:

foobar.com/foo/bar/index.php => foobar.com/foo/bar/index.php?myparameter=5 foobar.com/index.php?foo=7 => foobar.com/index.php?foo=7&myparameter=5

The main problem is that I don't know if I need to add a "?".

My code (found it somewhere, but it doesn't work):

<?php   if(/?/.test(self.location.href)){ //if url contains ?
    $url = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]&myparameter=5";
} else {
    $url = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]?myparameter=5"; 
}?>
like image 295
Puyol Avatar asked Jun 03 '12 08:06

Puyol


People also ask

How do you check if a URL has parameters or not?

To check if a url has query parameters, call the indexOf() method on the url, passing it a question mark, and check if the result is not equal to -1 , e.g. url. indexOf('? ') !== -1 .

How to check if URL has parameters PHP?

test(self. location. href)){ //if url contains ? $url = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]&myparameter=5"; } else { $url = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]?myparameter=5"; }?>

How to separate query parameters in URL?

To identify a URL parameter, refer to the portion of the URL that comes after a question mark (?). URL parameters are made of a key and a value, separated by an equal sign (=). Multiple parameters are each then separated by an ampersand (&).

How to use parameters in URL?

Any word after the question mark (?) in a URL is considered to be a parameter which can hold values. The value for the corresponding parameter is given after the symbol "equals" (=). Multiple parameters can be passed through the URL by separating them with multiple "&".


2 Answers

The URL parameters are received from a global variable called $_GET which is in fact an array. So, to know if a URL contains a parameter, you can use isset() function.

if (isset($_GET['yourparametername'])) {
    //The parameter you need is present
}

Afterwards, you can create separate array of such parameter you need to attach to a URL. Like:

if(isset($_GET['param1'])) {
    \\The parameter you need is present
    $attachList['param1'] = $_GET['param1'];
}
if(isset($_GET['param2'])) {
    $attachList['param2'] = $_GET['param2];
}

Now, to know whether or not, you need a ? symbol, just count this array

if(count($attachList)) {
    $link .= "?";
    // and so on
}

Update:

To know if any parameter is set, just count the $_GET

if(count($_GET)) {
     //some parameters are set
}
like image 86
Starx Avatar answered Sep 28 '22 04:09

Starx


Really you should be using the parse_url() function:

<?php
$url = parse_url($_SERVER['REQUEST_URI']);

if(isset($url['query'])){
    //Has query params
}else{
    //Has no query params
}
?> 

Also you should enclose your array based variables in curly brackets or break out of the string:

$url = "http://{$_SERVER['HTTP_HOST']}{$_SERVER['REQUEST_URI']}?myparameter=5";

or

$url = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']."?myparameter=5";

enable error_reporting(E_ALL); and you will see the error. Notice: Use of undefined constant REQUEST_URI - assumed 'REQUEST_URI' ect

like image 41
Lawrence Cherone Avatar answered Sep 28 '22 03:09

Lawrence Cherone