本文整理汇总了PHP中Proxy::results方法的典型用法代码示例。如果您正苦于以下问题:PHP Proxy::results方法的具体用法?PHP Proxy::results怎么用?PHP Proxy::results使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Proxy
的用法示例。
在下文中一共展示了Proxy::results方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: results
$this->response['info'] = curl_getinfo($this->ch);
if (curl_errno($this->ch)) {
$this->response['error'] = curl_error($this->ch);
}
curl_close($this->ch);
}
function results()
{
return $this->response['data'];
}
}
class VerifyCredentialsProxy extends Proxy
{
function __construct($host, $path)
{
parent::__construct($host, $path);
}
function process()
{
parent::process();
}
}
if ($_REQUEST['host'] == 'twitter.com' && $_REQUEST['path'] == 'account/verify_credentials.json') {
$request = new VerifyCredentialsProxy($_REQUEST['host'], $_REQUEST['path']);
} else {
$request = new Proxy($_REQUEST['host'], $_REQUEST['path']);
}
$request->args($_REQUEST['args'], $_REQUEST['type']);
$request->process();
echo $request->results();