function getNewUrl() { $giphy = new Giphy(); $result = $giphy->random('internet'); $img = $result->data->image_original_url; return $img; }
<?php require 'giphy.php'; $giphy = new Giphy(); $text = $_GET['text']; $search = explode('!gif ', $text); $search = $giphy->random($keyword); $return = $search->data->url; $json = array("text" => $return); $json = json_encode($json); echo $json;
public function __construct($key = 'dc6zaTOxFJmzC') { self::$key = $key; }