在oxwall中发送http请求

时间:2014-04-24 06:13:02

标签: php http httprequest oxwall

我正在使用oxwall插件。我遇到了一个问题。 我需要知道如何向网址发送http请求。 例如:

1)在joomla CMS中,我们发送这样的请求,

$http = new JHttp($options, $transport);
$response = $http->post($url, $data);

2)在drupal中,

$options = array(
    'method' => 'POST',
    'data' => $data,
    'timeout' => 15,
    'headers' => array('Content-Type' => 'application/json'),
  );
$result = drupal_http_request($url, $option);

我想知道,执行此任务的oxwall方式是什么,请帮助我或暗示我要查看哪个库。如果我无法找到解决方案,可以使用自定义PHP代码发送请求。它会影响插件的性能吗?

1 个答案:

答案 0 :(得分:0)

我认为并不存在您正在寻找的内容。 您只需使用自定义PHP代码即可。