php获取当前页

xiaoxiao2022-06-14  29

<?php function curPageURL() {  $pageURL = 'http';  if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}  $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; } ?>

You can now get the current page URL using the line:

<?php   echo curPageURL(); ?>

Sometimes it is needed to get the page name only. The following example shows how to do it: 

<?php function curPageName() {  return substr($_SERVER["SCRIPT_NAME"],strrpos($_SERVER["SCRIPT_NAME"],"/")+1); } echo "The current page name is ".curPageName(); ?>
转载请注明原文地址: https://www.6miu.com/read-4936517.html

最新回复(0)