ahmetbarut / pixabay
1
2020-08-22 17:57 UTC
Requires
- guzzlehttp/guzzle: ^6.3
This package is auto-updated.
Last update: 2024-09-29 05:42:51 UTC
README
为Pixabay提供的php API。
安装
composer require ahmetbarut/pixabay
简单使用
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);