A program for managing and merging overlapping time intervals.
- Input time intervals in HH:MM in 24H format
- Add multiple intervals via form interface
- View all saved intervals
- View automatically merged intervals
- Delete intervals with a click
- Export merged intervals to file
To use this application, you need to either:
-
Run locally:
- Install PHP on your computer
- Navigate to TimerIntervals folder
- Open Terminal/Command Prompt
- Start PHP server with command:
php -S localhost:9000
- Open in browser: http://localhost:9000/index.php
-
Or deploy on web server:
- Place TimerIntervals folder on any web server with PHP support
Чтобы это использовать, надо:
-
Для локального запуска:
- Установить PHP
- Перейти в папку TimerIntervals
- Запустить Terminal, убедитесь, что вы находитесь в папке TimerIntervals.
- Запустить сервер командой:
php -S localhost:9000
- Открыть в браузере http://localhost:9000/index.php
-
Или разместить папку TimerIntervals на веб сервере с поддержкой PHP
-
Enter interval times:
- Start time (HH:MM)
- End time (HH:MM)
-
Interface sections:
- Left column: Saved intervals
- Middle column: Merged intervals
- Right column: Input form
-
Operations:
- Click intervals to select/delete
- Use 'Save to file' to export results
Input: 09:00-10:30, 10:00-11:00
Result: 09:00-11:00 (merged)