Check to see if URL links already have parameters for PHP code additions? or &_php skills

Source: Internet
Author: User
such as pagination, because some links already have parameters, in addition to the paging information can not discard the original parameters, so to determine whether the link has parameters, and then additional paging information as needed.

The method is simple:
Copy Code code as follows:
(Strpos ($url, '? ')!== false)? ' & ': '? ');


Check to see if the link is included? , if any, such as:
Http://www.test.com/index.php?id=id
Then add a & to the link immediately following it and follow the paging information:
Http://www.jb51.net/index.php?id=id&page=12

If there are no parameters in the link, such as:
http://www.test.com/index.php
You need to add & then follow the paging information:
Http://www.jb51.net/index.php?page=12

A more robust inspection method is attached:
Copy Code code as follows:

<?php
$old _url = $_server["Request_uri"];
Check the link for existence?
$check = Strpos ($old _url, '? ');
If it exists?
if ($check!== false)
{
If? No parameters behind, such as http://www.yitu.org/index.php?
if (substr ($old _url, $check + 1) = = ")
{
You can add additional parameters directly
$new _url = $old _url;
}
else//If there are parameters, such as: http://www.yitu.org/index.php?ID=12
{
$new _url = $old _url. & ';
}
}
else//If not present?
{
$new _url = $old _url.
}
echo $new _url;
?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.