调整查询字符串中的变量

时间:2012-07-20 23:06:41

标签: php oop http variables http-post

在我的API访问文件中,我有以下代码

//operation was successful get the token from the reponse.
$challengeToken = $r->result->token;
    // to this point, we have got the token 

$userAccessKey = 'jkdijakjiejkdj25';    
//generate key
$generatedKey = md5($challengeToken.$userAccessKey);

我正在使用http_request2类来发送帖子数据,通过声明

$loginrequest = new HTTP_Request2('http://vijayholdings.com/admin/webservice.php?operation=login&username=admin&accessKey=('.$generatedKey.')', HTTP_Request2::METHOD_POST);

有人可以告诉我如何在URL中包含$ generatedKey作为类的参数?

现在

$loginrequest = new HTTP_Request2('http://vijayholdings.com/admin/webservice.php?operation=login&username=admin&accessKey=$generatedKey', HTTP_Request2::METHOD_POST);

我也试过这个,但是失败了......

请指导我

1 个答案:

答案 0 :(得分:0)

只需使用双引号" "即可将解析器提取"$variables"