marcin-jozwikowski/console-date-picker

为 Symfony Console 命令提供日期时间选择器

v1.0 2021-10-21 13:21 UTC

This package is auto-updated.

Last update: 2024-09-21 20:21:01 UTC


README

为 Symfony Console 命令提供日期时间选择器

安装

composer require marcin-jozwikowski/console-date-picker

用法

在 Symfony 命令中的示例用法

protected function execute(InputInterface $input, OutputInterface $output): int
{
    $datePicker = new DatePicker($input, $output);
    $date       = $datePicker->getDate(new YMDPickerDisplay(), "Please provide date ");

    $io->success($date->format('Y-m-d H:i:s'));

    return Command::SUCCESS;
}