URL - 获取 PHP 中的最后一部分
我有我的网址:
http://domain/fotografo/admin/gallery_bg.php
我想要网址的最后一部分:
gallery_bg.php
但是,我不想链接静态,即,对于vistitar的每个页面,我想获取URL的最后一部分
我有我的网址:
http://domain/fotografo/admin/gallery_bg.php
我想要网址的最后一部分:
gallery_bg.php
但是,我不想链接静态,即,对于vistitar的每个页面,我想获取URL的最后一部分
使用以下内容
<?php
$link = $_SERVER['PHP_SELF'];
$link_array = explode('/',$link);
echo $page = end($link_array);
?>
使用基名函数
echo basename("http://domain/fotografo/admin/gallery_bg.php");