Route::get('ip/:username','index/index/ip');
其中变量名为:username。
对应的方法:
public function ip($username){
$ip = $_SERVER["REMOTE_ADDR"];
echo '我当前的ip是:'.$ip.$username;
}
访问方法:
http://hjh.songshinet.com/public/index.php/ip/变量名
访问结果:我当前的ip是:112.9.220.113%E5%8F%98%E9%87%8F%E5%90%8D