Skip to content

Instantly share code, notes, and snippets.

View leonardola's full-sized avatar

leonardo lopes de albuquerque leonardola

  • Automattic
  • Brazil
View GitHub Profile
@leonardola
leonardola / Calendar.php
Created October 17, 2020 22:32
How to create a calendar in php
<?php
class Calendar
{
private $month;
private $date;
private $events = [];
public function __construct($date)
{
$this->date = new \DateTime($date);