0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【PHP】PHPでURLの情報を取得する

Posted at

PHPの$_SERVER変数でURLやドメインを取得。
今回の例では「pickup」のページを開いた時に任意の内容を"echo"に記述することで実装しています。

<?php
    $url = $_SERVER["REQUEST_URI"];
    if (strstr($url , "pickup")) { //$urlに'pickup'が含まれる場合
    echo ''; //URLに'pickup'が含まれる場合に表示される内容
    }
    else{
    }
?>
0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?