Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有点问题,因为我没有正确地在谷歌中得到搜索结果。我想要做的是简单地在这个 url 中提取这个确认码:
http://localhost/myproject/webactivate/activate/4fe114bf590c410597b20ef8ac1000751340150975vU0t70lN
我想得到这个
4fe114bf590c410597b20ef8ac1000751340150975vU0t70lN
应该很简单吧。。
你的问题有点含糊,但假设你activate的控制器中有一个方法,你可以通过以下方式访问激活码:
activate
public function activate($activationCode) { // do something with $activationCode }