更多的是出于兴趣...
$_GET['unique'] = blahblahblah=this_is_what_im_interested_in
我知道我可以像这样得到第二个元素:
$words = explode('=', $_GET['unique']);
echo $words[1];
有没有办法在一行中得到这个?- 那将“希望”允许我将其添加到函数/对象调用中:
$common->resetPasswordReply(... in here I would put it....);
喜欢
$common->resetPasswordReply(explode('=', $_GET['unique'])[1]);
我只是有兴趣看看这是否可能。