此儲存庫已於 2025-08-22 封存。您可以查看檔案並進行 Clone,但無法推送或開啟問題或合併請求。
Files
phpvsched/Tuesday.jpg.php
2021-09-28 13:27:39 +02:00

10 行
260 B
PHP

<?php
require_once "Schedule.php";
require_once "config.php";
$sched = new Schedule(Schedule::EveryWeekday("Tuesday", 2), $stations_berlin, $optional, $wanted, $darkmode);
$image = $sched->createImage();
header("Content-Type: image/jpg");
imagejpeg($image);