Skip to content

Instantly share code, notes, and snippets.

View RubenVianna's full-sized avatar
🎯
Focusing

Ruben Vianna RubenVianna

🎯
Focusing
  • 18:48 (UTC -03:00)
View GitHub Profile
@mohamedsalehamin
mohamedsalehamin / convert.php
Last active May 10, 2022 12:25
Convert image to base64 using curl
<?php
function curl_get_contents($url)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
$data = curl_exec($ch);