简体   繁体   中英

Is there a way to display the URL without the file extension in php

$link = $_SERVER['PHP_SELF'];
$link_array = explode('/u/', $link);
echo $_COOKIE[] = end($link_array);

Does anyone know how I could shave off 4 characters at the end or a totally different method thanks.

Use the basename function

$basename = basename($link, '.php');

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM