Url http://example.com/product/3 olduğunu söylüyorlar sağlar ve sadece http://example.com/product/ sonra ne almak istiyorum. Ben buldum, bu etki echos ama nasıl üç olsun. Onun bu yöntem güvenilir? Ben de CodeIgniter kullanıyorum.
<?php
function curPageURL() {
$pageURL = 'http';
$pageURL .= "://";
if ($_SERVER["SERVER_PORT"] != "80") {
$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
} else {
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
}
return $pageURL;
}
?>
<?php
echo curPageURL();
?>