php/lang/superglobals.php

14 lines
179 B
PHP
Raw Permalink Normal View History

2025-10-17 13:22:01 +08:00
<?php
$url = "/index.php?id=1";
$_SERVER['PHP_SELF'];
// ret ==> /index.php
$_SERVER['QUERY_STRING'];
// ret ==> /index.php?id=1
$_SERVER['REQUEST_URI'];
// ret ==> id=1