PHP code example of dmouse / select-helper

1. Go to this page and download the library: Download dmouse/select-helper library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

dmouse / select-helper example snippets


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