如何告诉laravel自动解码网址

时间:2018-06-27 20:53:51

标签: php laravel laravel-5

我如何告诉laravel自动将其打开

http://laraone.oo/backend/activate/8%3Fexpires%3D1530213677

进入此

http://laraone.oo/backend/activate/8?expires=1530213677

当我通过Vue通过post方法提交某些内容时,我目前正在获得第一类链接,如果我没记错的话,laravel的某个地方可以使laravel将所有第一类链接转换为第二类链接其余的应用程序启动之前的链接数量,并开始处理该网址。

1 个答案:

答案 0 :(得分:0)

使用urldecode

echo urldecode("http://laraone.oo/backend/activate/8%3Fexpires%3D1530213677");

将返回http://laraone.oo/backend/activate/8?expires=1530213677

http://php.net/manual/en/function.urldecode.php