Chen2022-01-04 15:39:02
$_SERVER['PHP_SELF'] 문서 루트와 관련된 현재 실행 중인 스크립트의 파일 이름입니다.
예를 들어 http://example.com/test.php/foo.bar의 스크립트에서 $_SERVER['PHP_SELF']를 사용하면 /test.php/foo.bar를 얻게 됩니다.
https://www.runoob.com/php/php-superglobals.html
Chen2022-01-04 15:37:32
$_SERVER['PHP_SELF']
문서 루트와 관련된 현재 실행 중인 스크립트의 파일 이름입니다.
예를 들어 http://example.com/test.php/foo.bar의 스크립트에서 $_SERVER['PHP_SELF']를 사용하면 /test.php/foo.bar를 얻게 됩니다.
https://www.runoob.com/php/php-superglobals.html