php怎么实现定位?除了ip?
可以使用html5定位,之后通过js发给php,php接受的header里面除了ip以外没有别的办法可以分析出具体位置了。但是html5是根据电脑所在地址分析的,如果设备支持gps就可以通过gps拿到对方精确位置。
Click the button to get your coordinates:
跪求、在php中怎么用redirect实现页面跳转?
首先redirect不是php内置的函数。而是thinkphp框架里的
点击函数可以看到最终是:
header('Location: XXX/');的过滤
使用方法可以查看手则
// 跳转到 edit 操作
$this->redirect('edit');
// 跳转到 UserAction下的edit 操作
$this->redirect('User/edit');
// 跳转到 Admin分组默认模块默认操作
$this->redirect('Admin/');