【譯】如何使用PHP快速構建命令行應用程序

原文地址:How to build a Command Line Application using PHP?php

若是你是一名Web開發工程師,那麼你必定使用PHP開發過不少Web應用程序。可是你知道如何使用PHP快速構建一個命令行應用程序(工具)嗎?下面我將向您展現如何使用PHP和一個著名的的Composer擴展包--Symphony/Console構建一個命令行應用。前端

Symphony/Console是一個使用Composer管理的PHP擴展包,它簡化了建立一個漂亮的、可測試的PHP命令行應用的過程,它提供了開箱即用的諸如(可選/必選的)參數規範和選項規範(使用-符號)等功能。那麼,咱們來一塊兒開始構建咱們的應用。bash

按照慣例,咱們將構建一個「Hello World」的控制檯應用程序,可是要稍微修改一下它,讓它支持自定義問候語(代替Hello),而且能夠隨意的去問候一我的(代替world)。app

這個Hello World應用程序將會有以下功能:

  1. 爲咱們提供一個單獨的greet(問候)命令,咱們將使用它來與應用程序交互。
  2. greet能夠接受一個可選的參數(name)來打印出一個被問候的人(默認是World)。
  3. greet能夠接受一個選項(--say)來更改問候語(默認是Hello)。
  4. 若是咱們麼樣給定參數或者選項,程序將默認輸出一個Hello World消息。

如何使用PHP構建命令行應用程序

  • 爲咱們的項目建立新的目錄並cd進入它:composer

    mkdir hello-world-app && cd hello-world-app
    複製代碼
  • 使用Composer控制檯組件引入咱們項目工具

    composer require symfony/console
    複製代碼
  • 而後爲你的應用程序建立一個入口點,PHP擴展不是必需的,由於咱們要使這個文件成爲可執行文件,並在文件自己中指定環境。測試

    touch HelloWorld
    chmod +X HelloWorld 
    複製代碼
  • 將下面的代碼添加到HelloWorld文件中(後面我將爲每一行作註解),並在你的終端中執行HelloWorld這個應用程序.網站

    #!/usr/bin/env php
    <?php
    require __DIR__.'/vendor/autoload.php';
    
    use Symfony\Component\Console\Application;
    use Symfony\Component\Console\Input\InputArgument;
    use Symfony\Component\Console\Input\InputInterface;
    use Symfony\Component\Console\Input\InputOption;
    use Symfony\Component\Console\Output\OutputInterface;
    
    (new Application('Hello World', '1.0.0'))
          ->register('greet')
          ->addArgument('name', InputArgument::OPTIONAL, 'Name of the person')
          ->addOption('say', null, InputOption::VALUE_REQUIRED, 'Custom greeting')
          ->setCode(function (InputInterface $input, OutputInterface $output) {
                  
            $name = $input->getArgument('name');
            $greeting = $input->getOption('say');
    
            if (!empty($name) && !empty($greeting)) {
                return $output->writeln("<info>$greeting $name!</info>");
            } else if (!empty($name)) {
                return $output->writeln("<info>Hello $name!</info>");
            } else if (!empty($greeting)) {
                return $output->writeln("<info>$greeting World!</info>");
            } else {
                return $output->writeln("<info>Hello World!</info>");
            }
          })
          ->getApplication()
          ->run();
    複製代碼

看,就這樣,你擁有了本身的HelloWorld控制檯程序 ui

當沒有指定命令時,HelloWorld默認輸出一屏信息提示

Symfony Console組件給咱們提供的應用程序有幾個開箱可用的選項的和命令,好比helplist--versionspa

解釋這個神奇的文件內容

OK,讓咱們來看看咱們的HelloWorld文件中的代碼。

  1. 咱們引入autoload.php以使用由composer提供的自動加載以及控制檯組件提供的各功能。 InputInterfaceOutputInterface將使應用程序的輸入和輸出功能變得簡單,InputArgumentInputOption將幫助咱們處理傳遞給咱們HelloWorld應用程序的選項和參數。
require __DIR__.'/vendor/autoload.php'; 

use Symfony\Component\Console\Application; 
use Symfony\Component\Console\Input\InputArgument; 
use Symfony\Component\Console\Input\InputInterface; 
use Symfony\Component\Console\Input\InputOption; 
use Symfony\Component\Console\Output\OutputInterface;
複製代碼
  1. symphony/console經過名稱實例化一個新的應用程序HelloWorld (v1.0.0),並註冊咱們的greet命令。
(new Application('Hello World', '1.0.0'))
    ->register('greet')

複製代碼
  1. 咱們添加一個可選的name參數(addArgument()),並提供參數的簡短描述。而後,咱們使用這個addOption()方法添加一個say選項。請注意,選項始終是可選的,但您能夠指定要傳遞的值,也能夠僅僅將其用做指boolean標識。
->addArgument('name', InputArgument::OPTIONAL, 'Name of the person') 
->addOption('say', null, InputOption::VALUE_REQUIRED, 'Custom greeting')
複製代碼
  1. setCode()方法中的代碼會包含咱們應用程序的主邏輯,它會根據傳遞的參數和選項打印一個問候語到終端。咱們監聽$input對象,使用getArgument()getOption()輔助方法獲取傳遞給greet的選項和參數,而後,咱們只須要檢查傳遞了哪些參數或者選項,並相應的(使用$output對象)向控制檯輸出打印問候語。這個writeln()方法能夠根據標籤格式化文本,好比輸出不一樣顏色的info,errorwarning
->setCode(function (InputInterface $input, OutputInterface $output) {
    $name = $input->getArgument('name');
    $greeting = $input->getOption('say');

    if (!empty($name) && !empty($greeting)) {
        return $output->writeln("<info>$greeting $name!</info>");
    } else if (!empty($name)) {
        return $output->writeln("<info>Hello $name!</info>");
    } else if (!empty($greeting)) {
        return $output->writeln("<info>$greeting World!</info>");
    } else {
        return $output->writeln("<info>Hello World!</info>");
    }
  })
複製代碼
  1. 最後咱們引導應用程序並調用他的方法,以便他作好隨時接收和處理greet命令。
->getApplication()
->run();
複製代碼

如今讓咱們在實例中看看咱們HelloWorld程序

  1. greet不傳遞任何參數和選項

  2. greet有一個可選的name參數

  3. greet使用say選項自定義問候語

  4. 最後,greet自定義問候語和問候人


關於做者

程序開發人員,不拘泥於語言與技術,目前主要從事PHP和前端開發,使用Laravel和VueJs。合適和夠用是永不停息的追求。

我的網站:https://www.linganmin.cn

譯者注:本文中的部分連接和圖片地址已更換爲國內地址,若有翻譯錯誤請多指正。 Happy Coding!

相關文章
相關標籤/搜索