本文整理汇总了PHP中HTTPRequest::Post方法的典型用法代码示例。如果您正苦于以下问题:PHP HTTPRequest::Post方法的具体用法?PHP HTTPRequest::Post怎么用?PHP HTTPRequest::Post使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HTTPRequest
的用法示例。
在下文中一共展示了HTTPRequest::Post方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
function check_auth_response($params = array())
{
$httpclient = new HTTPRequest($this->check_url);
// Add Api key to response
$params['api_key'] = $this->api_key;
$res = $httpclient->Post($params, true);
if ($res['http']['code'] == 200 && $res['body'] == $params['verification_code']) {
return true;
} else {
return false;
}
}
示例2: Authenticate
function Authenticate($username, $password) {
$params['accountType'] = 'HOSTED_OR_GOOGLE';
$params['Email'] = $username;
$params['Passwd'] = $password;
$params['service'] = 'xapi';
$params['source'] = 'Zend-ZendFramework';
$http = new HTTPRequest('https://www.google.com/accounts/ClientLogin');
$response = $http->Post($params,true);
$httpdetails = $response['http'];
$code = $httpdetails['code'];
if ($code == 200) {
return true;
} else {
return false;
}
}