ahmetbarut / pixabay
1
2020-08-22 17:57 UTC
Requires
- guzzlehttp/guzzle: ^6.3
This package is auto-updated.
Last update: 2025-03-01 00:32:23 UTC
README
Pixabay için php api.
Kurulum
composer require ahmetbarut/pixabay
Basit Kullanım
require_once "./vendor/autoload.php"; use Pixabay\Client; $pixabay = new Client([ "key" => "api_key", "lang" => "tr", "image_type" => "photo", "q" => "kediler" ]); $response = $pixabay->body(); print_r($response->hits);