angelc12ell/simplecalendar

一个轻量级、易于使用的日历渲染库,由donatj/simplecalendar分支而来

v0.1.1 2023-09-26 10:32 UTC

This package is auto-updated.

Last update: 2024-09-28 06:34:15 UTC


README

一个非常简单、易于使用的PHP日历渲染类。

致谢

这是为了其他用途而分支的,同时没有牺牲核心功能(https://github.com/donatj/SimpleCalendar)。

安装

使用以下命令安装最新版本:

composer require 'aingelc12ell/simplecalendar'

示例

<?php

require '../vendor/autoload.php';

echo '<link rel="stylesheet" href="../src/css/SimpleCalendar.css" />';

$calendar = new ACCESS\SimpleCalendar('June 2010');

echo $calendar->render();
<?php
require '../vendor/autoload.php';

echo '<link rel="stylesheet" href="../src/css/SimpleCalendar.css" />';

$calendar = new ACCESS\SimpleCalendar();

$calendar->setStartOfWeek('Sunday');
$calendar->addDailyHtml('Sample Event', 'today', 'tomorrow');

$calendar->setWeekDayNames([ 'Sun', 'Mon', 'Tu', 'W', 'Th', 'F', 'Sa' ]);
$calendar->setStartOfWeek('Monday');

echo $calendar->render();