在PHP中使用$_服務(wù)器

$_SERVER是稱為Superglobals的PHP全局變量之一,其中包含有關(guān)服務(wù)器和執(zhí)行環(huán)境的信息。這些是預(yù)定義的變量,因此始終可以從任何類,函數(shù)或文件中訪問它們。

這里的條目被web服務(wù)器識別,但不能保證每個web服務(wù)器都能識別每個超級全局。這三個PHP$U服務(wù)器陣列的行為方式都相似-它們返回有關(guān)使用中文件的信息。當(dāng)暴露于不同情況時,在某些情況下它們的行為會有所不同。這些例子可能有助于您決定哪一個最適合您需要。PHP網(wǎng)站上提供了$U服務(wù)器陣列的完整列表。

$_服務(wù)器['PHP_SELF']

PHP_SELF是當(dāng)前執(zhí)行腳本的名稱。

  • http://www.yoursite.com健康知識網(wǎng)/example/--->/示例/index.php
  • http://www.yoursite.com/example/index.php--->/示例/index.php
  • http://www.yoursite.com/example/index.php?a=測試->/示例/index.php
  • http://www.yoursite.com/example/index.php/dir/test--->/dir/test

當(dāng)你使用$u服務(wù)器['PHP u SELF']時,它返回文件名/示例/index.php無論是否在URL中鍵入文件名。當(dāng)變量在末尾附加時,它們被截?cái)嗖⒃俅?示例/index.php被退回了。**產(chǎn)生不同結(jié)果的版本在文件名后面附加了目錄。在這種情況下,它會返回這些目錄。

$U服務(wù)器['請求UURI']

請求URI是指用于訪問頁面的URI。

  • http://www.yoursite.com/example/--->/
  • http://www.yoursite.com/example/index.php--->/示例/index.php
  • http://www.yoursite.com/example/index.php?a=測試->/示例/index.php?a=test
  • http://www.yoursite.com/example/index。php/dir/test-->/示例/index.php/dir/test

所有這些示例都返回了URL輸入的內(nèi)容。它返回一個普通的/,文件名,變量和附加的目錄,就像它們被輸入一樣。

$U服務(wù)器['腳本U名稱']

腳本名稱是當(dāng)前腳本's路徑。這對于需要指向自己的頁面很有用。

  • http://www.yoursite.com/example/--->/示例/index.php
  • http://www.yoursite.com/example/index.php--->/示例/index.php
  • http://www.yoursite.com/example/index.php?a=測試->/示例/index.php
  • http://www.yoursite.com/example/index.php/dir/test--->/示例/index.php

這里的所有案例只返回文件名/示例/index.php無論是鍵入,未鍵入還是附加任何內(nèi)容。