我有类似的东西:
$client = new Zend_Http_Client('http://www.site.com');
$client->setParameterGet(array(
'platform' => $platform,
'clientId' => $clientId,
'deploymentId' => $deploymentId,
));
try {
$response = $client->request();
...
这将生成类似于“http://www.site.com/?plataform=..?clientid?..”的请求。有没有办法可以检索此 GET 请求生成的完整 URL?亲切的问候,