doubinduo3364 2016-10-04 15:04
浏览 49
已采纳

使用自定义CLI命令运行doctrine控制台

I decided to create minimal Silex 3, Doctrine2 stack so that I could make simple REST API. I am not sure how to handle doctrine console though.

I want to keep things simple so in project root I created folder called bin. I created simple file console.php that is supposed to run various php files.

File: bin\console.php

<?php

// When I run "php bin/console.php doctrine --version"
// The "doctrine" is name of the library that I want to use
// So that I can also do something like "php bin/console.php myLibrary --specialCommand"
$type = $argv[1];

// I want to remove the name of the library from the cli command though
unset($argv[1]);
// Update array indexes
$argv = array_values($argv);

// Choose file
if ($type == "doctrine") {
    // Run doctrine
    require_once __DIR__ . "/console/doctrine.php";
}

But I get following error:

[Symfony\Component\Console\Exception\CommandNotFoundException]
  Command "doctrine" is not defined.
  • 写回答

2条回答 默认 最新

  • douyinyi7766 2016-10-05 12:12
    关注

    I know that this is actually a really bad way how to do things but if anyone wants to know the answer in the future if you want to edit $argv you must also update $argc.

    This code works as expected:

    <?php
    
    // When I run "php bin/console.php doctrine --version"
    // The "doctrine" is name of the library that I want to use
    // So that I can also do something like "php bin/console.php myLibrary --specialCommand"
    $type = $argv[1];
    
    // I want to remove the name of the library from the cli command though
    unset($argv[1]);
    // Update array indexes
    $argv = array_values($argv);
    $argc -= 1;
    
    // Choose file
    if ($type == "doctrine") {
        // Run doctrine
        require_once __DIR__ . "/console/doctrine.php";
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部