Nasıl sürekli php sorgu yolu bilgi almak mı?

1 Cevap php

Temelde kullanıcı istekleri halinde:

index.php/foo/bar

Ben "/ foo / bar" ve ihtiyacı

index.php

I "veya" / "" gerekiyor

Ben buna ne denir bilmiyorum çünkü ben google herhangi bir bilgi bulamadım (yol bilgisi bana PathInfo var () fonksiyonu)

Ben hiçbir bilgi yoksa daha yol bilgisi varsa PHP_SELF farklı döndürür bulundu

1 Cevap

Dosya adından sonra kısım /index.php denir path info (bkz: Apache’s AcceptPathInfo direktifi ). You can access that information with the $_SERVER['PATH_INFO'] değişken . And if you want the full requested URL path with query, use $_SERVER['REQUEST_URI'].