Advertisement
Guest User

Untitled

a guest
Dec 11th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <?php
  2.  
  3. $url = 'https://myapiurl.com/api/search?token=xxxxxxxxxxxxxxxxxxxxxxx';
  4.  
  5. $ch = curl_init($url);
  6. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
  7. curl_setopt($ch, CURLOPT_POSTFIELDS, array ("Image" = base64_encode(file_get_contents("gambar.jpg"), "Filter" = filternya));
  8. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  9. curl_setopt($ch, CURLOPT_HTTPHEADER, array(
  10. 'Content-Type: application/json',
  11. 'Content-Length: ' . strlen($data_string))
  12. );
  13. $result = curl_exec($ch);
  14. curl_close($ch);
  15. $json_result = json_decode($result, true);
  16. ?>
  17.  
  18. <?php echo $json_result['title']; ?></strong></p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement