我目前的代码是:
$scripturl.'main.php?i='.$app_id.'&s='.$app_secret."&n=".$n, 'response_type' => 'code'));
我想将&display=touch
添加到结果网址的末尾,如下所示:
status_update%2Cuser_birthday%2Cpublish_stream&response_type=code&display=touch
如果我在上面的代码中添加它:'response_type' => 'code&display=touch'
结果网址显示如下:
status_update%2Cuser_birthday%2Cpublish_stream&response_type=code%26display%3Dtouch
它将&
转换为%26
,将=
转换为%3D
。如何在不触发此效果的情况下添加&display=touch
?
答案 0 :(得分:1)
将'display' => 'touch'
添加为数组中的另一个元素:
$scripturl.'main.php?i='.$app_id.'&s='.$app_secret."&n=".$n, 'response_type' => 'code', 'display' => 'touch'));