mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-08-23 09:27:25 +00:00
20 lines
307 B
PHP
20 lines
307 B
PHP
<?php
|
|
|
|
function jubi_api_query($method, $params)
|
|
{
|
|
$uri = "http://www.jubi.com/api/v1/$method$params";
|
|
// debuglog("$uri");
|
|
|
|
$ch = curl_init($uri);
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
|
|
$execResult = curl_exec($ch);
|
|
$obj = json_decode($execResult);
|
|
|
|
return $obj;
|
|
}
|
|
|
|
|
|
|
|
|
|
|