doubinduo3364 2016-10-04 23: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 20: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条)

报告相同问题?

悬赏问题

  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥170 如图所示配置eNSP
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改
  • ¥20 wireshark抓不到vlan
  • ¥20 关于#stm32#的问题:需要指导自动酸碱滴定仪的原理图程序代码及仿真
  • ¥20 设计一款异域新娘的视频相亲软件需要哪些技术支持