$this->api_key, 'action' => 'add', ), $data); return json_decode($this->connect($post)); } public function orders($data) { // add order return json_decode($this->connect(array( 'key' => $this->api_key, 'action' => 'orders', ))); } public function orderDetails($order_id) { // add order return json_decode($this->connect(array( 'key' => $this->api_key, 'action' => 'order_details', 'order' => $order_id ))); } public function status($order_id) { // get order status return json_decode($this->connect(array( 'key' => $this->api_key, 'action' => 'status', 'order' => $order_id ))); } public function multiStatus($order_ids) { // get order status return json_decode($this->connect(array( 'key' => $this->api_key, 'action' => 'status', 'orders' => implode(",", (array)$order_ids) ))); } public function services() { // get services return json_decode($this->connect(array( 'key' => $this->api_key, 'action' => 'services', ))); } public function balance() { // get balance return json_decode($this->connect(array( 'key' => $this->api_key, 'action' => 'balance', ))); } public function refill($order_id) { // get services return json_decode($this->connect(array( 'key' => $this->api_key, 'action' => 'refill', 'order' => $order_id ))); } public function cancel($order_id) { // get services return json_decode($this->connect(array( 'key' => $this->api_key, 'action' => 'cancel', 'order' => $order_id ))); } private function connect($post) { $_post = Array(); if (is_array($post)) { foreach ($post as $name => $value) { $_post[] = $name.'='.urlencode($value); } } $ch = curl_init($this->api_url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); if (is_array($post)) { curl_setopt($ch, CURLOPT_POSTFIELDS, join('&', $_post)); } curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)'); $result = curl_exec($ch); if (curl_errno($ch) != 0 && empty($result)) { $result = false; } curl_close($ch); return $result; } }