我有一个这样的网址:
test.project-heberg.fr/admin/test.php
我想只在这部分输入var:
test.project-heberg.fr/
我该怎么办? 提前致谢。
答案 0 :(得分:1)
我想你想知道主机名?所以使用以下代码:
$_SERVER['SERVER_NAME']
或
$_SERVER['HTTP_HOST']
所有服务器变量都可在此处找到:http://www.php.net/manual/en/reserved.variables.server.php
祝你好运!答案 1 :(得分:0)
explode会做到这一点
$string = "test.project-heberg.fr/admin/test.php"
$res= explode("/", $string);
echo $res[0]."/"; // test.project-heberg.fr/
或使用strstr
$res = strstr($string, '/',true);
echo $res."/"; // test.project-heberg.fr/
答案 2 :(得分:0)
你可以做很多事。建议的方式之一是..
$a= "test.project-heberg.fr/admin/test.php";
$b = strstr($a, "/",TRUE)."/";
echo $b;
答案 3 :(得分:0)
使用::
$str = "test.project-heberg.fr/admin/test.php";
echo strstr($str, '/', true) . "/";