pixels.com 网站的 API

v1.0.0 2023-01-14 17:41 UTC

This package is auto-updated.

Last update: 2024-09-14 21:16:05 UTC


README

安装

composer require jamshidbekakhlidinov/pixels-api

示例代码

<?php
    include "vendor/autoload.php";
    use jamshidbekakhlidinov\PixelsAPI;

    $api = new PixelsAPI();
    $api->page = rand(1,$api->per_page);
    $text = "wolf";
    $json_photos = $api->search($text);
    $photos = json_decode($json_photos, true);
    print_r($photos);
?>