Skip to content

Instantly share code, notes, and snippets.

View rhalp10's full-sized avatar
🇵🇭
Working from home

Rhalp Darren Cabrera rhalp10

🇵🇭
Working from home
  • rdrc.tech
  • Province of Cavite Trece Martires City, Philippines
  • 00:20 (UTC +08:00)
  • X @rhalp10
View GitHub Profile
@vyatri
vyatri / MimeMailParser.class.php
Created April 24, 2011 09:06
This class allows you to receive and parse email in PHP efficiently and effortlessly.
<?php
require_once('attachment.class.php');
/**
* Fast Mime Mail parser Class using PHP's MailParse Extension
* @author gabe@fijiwebdesign.com
* @url http://www.fijiwebdesign.com/
* @license http://creativecommons.org/licenses/by-sa/3.0/us/
* @version $Id$
@michaelaguiar
michaelaguiar / GoogleScrape.class.php
Created September 11, 2012 22:04
Google Result Scraper
<?php
require_once('simple_html_dom.php');
class Google_Scrape
{
private $html = null;
private $query = null;
private $results = 0;
public function __construct($query='sample', $results=20)