gpt4 book ai didi

php - URL - 获取 PHP 的最后一部分

转载 作者:技术小花猫 更新时间:2023-10-29 12:44:17 26 4
gpt4 key购买 nike

我有我的网址:

http://domain/fotografo/admin/gallery_bg.php

我想要 url 的最后一部分:

 gallery_bg.php

但是,我不想链接静态,即,对于每个访问的页面,我想获取 url 的最后一部分

最佳答案

使用跟随

<?php
$link = $_SERVER['PHP_SELF'];
$link_array = explode('/',$link);
echo $page = end($link_array);
?>

关于php - URL - 获取 PHP 的最后一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19541080/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com