Skip to content

Instantly share code, notes, and snippets.

View ipkpjersi's full-sized avatar

ipkpjersi

View GitHub Profile
@ipkpjersi
ipkpjersi / index.php
Last active August 12, 2023 00:44
Lemmy User Comment Scraper
<?php
function fetchContent($url) {
$production = false; //Change as needed
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
if (empty($production)) {
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
}
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);