dmouse/select-helper

使用 Symfony/console 创建选择选项列表。

0.1 2015-11-26 04:34 UTC

This package is auto-updated.

Last update: 2024-08-24 05:22:16 UTC


README

Symfony Console Select Helper

选择辅助工具

此组件为 symfony/console 提供选择辅助。

如何使用

在 composer.json 中包含

$ composer require dmouse/select-helper

从选择辅助类创建一个新的实例

  // ...
  $select = new \Dmouse\Console\Helper\SelectHelper($output);
  $select->setOptions([
      "option 1",
      "option 2",
      "option 3"
  ]);
  $option = $select->runSelect();
  // ...

更多信息请查看 https://github.com/dmouse/select-helper/blob/master/console.php

开发