주소 목록 가져오기.
 
http://apps.facebook.com/bejeweledfriend/index.php

php 경로가 위와 같을경우 결과는 아래와 같습니다.

PHP_SELF


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

출력 : 
bejeweledFriend/index.php 



dirname

<?
echo dirname($_SERVER['PHP_SELF']);
?>

출력 : /bejeweledFriend



 basename
 

<?
echo basename($_SERVER['PHP_SELF']);
?>

출력 :  
index.php

 

HTTP_HOST
 

<?
echo $_SERVER[HTTP_HOST];
?>

출력 :  mbs723.cafe24.com



HTTP_REFERER

<?
echo $_SERVER["HTTP_REFERER"];
?>
 

출력 : 이전페이지 주소 

+ Recent posts