Skip to content

Instantly share code, notes, and snippets.

View kevincobain2000's full-sized avatar

Pulkit Kathuria kevincobain2000

View GitHub Profile
@kevincobain2000
kevincobain2000 / pinterest_scrape.php
Last active December 20, 2020 14:04
Pinterest Search From Tags, Unofficial Scrape PHP
public function searchPinterest($q)
{
$url = "https://jp.pinterest.com/search/pins/?q=$q";
$html = file_get_contents($url);
$domd = new \DOMDocument();
libxml_use_internal_errors(true);
$domd->loadHTML($html);
libxml_use_internal_errors(false);
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class Codesniffer extends Command
{
/**
* {@inheritdoc}
*/