ical2json/htdocs/strtotime/index.php

5 lines
137 B
PHP
Raw Permalink Normal View History

2023-04-20 12:37:33 +02:00
<?php
$date = strtotime($_REQUEST["date"]);
$format = isset($_REQUEST["format"]) ? $_REQUEST["format"] : "U";
echo date($format, $date);