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 3 years have passed since last update.

PHP $_SEVERについて

Last updated at Posted at 2021-04-05

さらに詳しく考察した記事を書いた(リンクは以下)
$_SERVERについて 〜さらに詳しく〜
#各オプションの使い方
###$_SEVER['PHP_SELF']
スクリーンショット 2021-04-05 15.58.35.png
上記公式の情報を参考に検証していく
スクリーンショット 2021-04-05 15.53.12.png

MAMPで上記画像の様な階層で検証する。(ドキュメントルート はhtdocs)
htdocs/test2/do/dec1.php
上記ファイル内で

<?php 
echo $_SERVER['PHP_SELF'];

を実行すると
test2/do/dec1.php
が表示される。

次に
htdocs/test2/sever.php

上記ファイル内で同様に試すと
test2/sever.php
と表示される。

この例から公式で
http://example.com/foo/bar.php
での表示が
/foo/bar.php
となっていることが
ドキュメントルートに対してそれ以下のディレクトリとファイル名が表示されると分かった。

0
0
0

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?