我在Windows Vista上使用XAMPP。在我的发展中,我有http://127.0.0.1/test_website/。我如何http://127.0.0.1/test_website/使用PHP?我试过这样的东西,但没有一个有用。echo dirname(__FILE__)orecho basename(__FILE__);etc.
3 回答
呼啦一阵风
TA贡献1802条经验 获得超6个赞
功能调整为执行时没有警告:
function url(){
if(isset($_SERVER['HTTPS'])){
$protocol = ($_SERVER['HTTPS'] && $_SERVER['HTTPS'] != "off") ? "https" : "http";
}
else{
$protocol = 'http';
}
return $protocol . "://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
}
- 3 回答
- 0 关注
- 458 浏览
添加回答
举报
0/150
提交
取消