如何使用PHP执行相同的cURL POST请求

时间:2014-05-22 17:56:11

标签: php curl bottle

我需要从php执行相同的代码。如您所见,在此代码中我将json包含为上下文。 此代码现在从linux终端执行:

curl -X POST -H "Content-Type: application/json" -d '{"jsonrpc": "2.0", "method":"leer_datos", "params": {"bd":"escuela","tabla":"secretaria","id":"2"}}' http://localhost:8090/rpc/alchemy

我在stackoverflow上看到了其他问题和回复,例如

$url = 'http://server.com/path';
$data = array('key1' => 'value1', 'key2' => 'value2');

// use key 'http' even if you send the request to https://...
$options = array(
    'http' => array(
        'header'  => "Content-type: application/x-www-form-urlencoded\r\n",
        'method'  => 'POST',
        'content' => http_build_query($data),
    ),
);
$context  = stream_context_create($options);
$result = file_get_contents($url, false, $context);

var_dump($result);

但我无法修复它。

这个想法是将数据传递给一个带有瓶子框架的文件,准备接收这些数据。此文件是使用终端中的cURL调用编写和测试的。

0 个答案:

没有答案