2

我现在在构建允许使用 zend for app 构建控制台脚本的机制时遇到问题。例如像:

--脚本

----index.php

----basecmd.php

当 basecmd 包含其他脚本的主类时,文件结构为

include index.php
....
MyClass extends Zend_Console_Getopt{

但是在 index.php 中我需要使用参数设置 APPLICATION_ENVOIRMENT 作为 --application_env 发送到脚本 我的问题是我可以在使用 getopt 解析参数时设置它,但是如何在 index.php 中进行设置?信息:我需要显示错误,例如:'application_env must me always set when running script' 我将不胜感激任何指南。

4

1 回答 1

4

如果我理解正确,您正在尝试从 CLI/CMD 运行您的应用程序,方法是调用 basecmd.php,它将设置变量/常量以使 index.php 正常工作

您的 basecmd.php 应如下所示:

#!/usr/bin/env php
<?php
// basecmd.php
require_once 'path/to/Zend/Console/Getopt.php';
try {
    $opts = new Zend_Console_Getopt(
        array(
            'app-env|e=s' => 'Application environment',
            'app-path|ap=s' => 'Path to application folder',
            'lib-path|lp=s' => 'Path to library',
            // more options
        )
    );
    $opts->parse();
    if (!($path = $opts->getOption('ap'))) { // cli param is missing
        throw new Exception("You must specify application path");
    }
    define('APPLICATION_PATH', $path);
    // process other params and setup more constants/variables
} catch (Zend_Console_Getopt_Exception $e) {
    echo $e->getUsageMessage();
    exit;
} catch (Exception $e) {
    echo $e->getMessage() . "\n";
    exit;
}
// it is wise to setup another constant so application can determine is it a web or cli call
define('RUN_VIA', 'cli');
// if all done correctly include application loader script
include 'index.php';

在您的 index.php 中,您应该只测试是否已经定义了常量或变量:

<?php
// index.php
defined('APPLICATION_PATH') // is it defined
    or define('APPLICATION_PATH', '../application'); // no? then define it
defined('RUN_VIA')
    or define('RUN_VIA', 'web');
// ... rest of the code

我希望这可以帮助您走上正轨;)

于 2012-09-02T10:48:02.603 回答