关于PHP获取URL后去掉index.php的问题
发布网友
发布时间:2022-04-06 01:24
我来回答
共5个回答
热心网友
时间:2022-04-06 02:54
PHP String 函数
你去php手册里面查查看是否有相关的字符串处理函数可以去的开头和结尾的字符的函数,应该是有的
http://www.w3school.com.cn/php/php_ref_string.asp
热心网友
时间:2022-04-06 04:12
<?php
$url = 'www.AAA.com/index.php';
echo str_replace(array('www.','index.php'),'',$url);
你要的是这样吗?追问我现在用的是
$geturl=str_replace('index.php','',$URL);
我想在这基本上再去掉www. 现在只能去掉INDEX.PHP
热心网友
时间:2022-04-06 05:46
$geturl=$_SERVER['REQUEST_URI'];
$geturl=str_replace("www.","",substr($geturl,0,strpos($geturl,"index.php")-1));
热心网友
时间:2022-04-06 07:38
参考这个问题就可以了
http://zhidao.baidu.com/question/118353918.html
热心网友
时间:2022-04-06 09:46
那你去两次就好了嘛..
$url = str_replace("index.php","",$url);
$url = str_replace("www","",$url);追问还真可以 谢谢 我就怎么没想到