This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// install goutte package with composer | |
use Goutte\Client; | |
$Client = new Client(); | |
// send request to digikala api for get product details | |
$crawler = $Client->request('GET', "https://api.digikala.com/v1/product/6850997/"); |