panduanvip / google-image
Google Image Extractor
1.0.0
2021-07-06 04:44 UTC
Requires
- panduanvip/helpers: ^1.0
- panduanvip/ronolo-json-extract: ^1.1
This package is auto-updated.
Last update: 2024-12-06 12:27:45 UTC
README
Web extractor for Google Image website
Installation:
composer require panduanvip/google-image
Usage:
<?php include 'vendor/autoload.php'; use PanduanVIP\WebExtractor\GoogleImage; $keyword = 'sepatu roda'; $results = json_decode(GoogleImage::get($keyword)); echo '<pre>';
Result:
Array
(
[0] => stdClass Object
(
[alt] => SEPATU RODA INLINE SKATE ANAK / BAJAJ TERBARU MERK POWER UKURAN S ...
[image] => https://cf.shopee.co.id/file/5fde8c3fd04b556c14fdc2ebd1d48bf2
[thumbnail] => https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRI7QOJHoC25YnuiyoWWNRy1bO-vXjkSZAYnw&usqp=CAU
[source] => https://shopee.co.id/SEPATU-RODA-INLINE-SKATE-ANAK-BAJAJ-TERBARU-MERK-POWER-UKURAN-S-M-L-FREE-BAUT-KUNCI-L-i.289749233.6744518264
)
[1] => stdClass Object
(
[alt] => Inline Skate atau Sepatu Roda Power baru - Olahraga - 805169403
[image] => https://apollo-singapore.akamaized.net/v1/files/wwwueflk7xyv3-ID/image;s=850x0
[thumbnail] => https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR_DKFC2tjHPAiRvwoE_3WCrcVFA4n6Pq5Lww&usqp=CAU
[source] => https://www.olx.co.id/item/inline-skate-atau-sepatu-roda-power-baru-iid-805169403
)
.........