1 <sect1 id="zend.console.getopt.rules">
2 <title> 声明 Getopt 规则 </title>
4 <code>Zend_Console_Getopt</code> 类的构造器带有一到三个参数。第一个参数声明哪个选项被应用程序支持。这个类支持交替(alternative)语法形式来声明选项。参见下面的章节关于这些语法形式的格式和用法。
7 构造器带有的另外两个参数都是可选的。第二个参数可以包含命令行参数,缺省为 <code>$_SERVER['argv']</code> 。
10 第三个参数包含一个配置选项来定制 <code>Zend_Console_Getopt</code> 的行为(behavior)。关于可用选项的引用(reference),参见 <link linkend="zend.console.getopt.configuration.config"> 添加配置 </link>
13 <sect2 id="zend.console.getopt.rules.short">
14 <title> 用短语法声明选项 </title>
16 <code>Zend_Console_Getopt</code> 支持紧凑的语法 (类似用于 GNU Getopt的语法,参见 <ulink url="http://www.gnu.org/software/libc/manual/html_node/Getopt.html">http://www.gnu.org/software/libc/manual/html_node/Getopt.html</ulink> )。这个语法只支持单字符 flag 。在一个单个的字符串中,每个字母对应于被程序支持的 flag。字母后跟着冒号 ("<code>:</code>") 表示这个 flag 需要参数。
18 <example id="zend.console.getopt.rules.short.example">
19 <title> 使用短语法 </title>
20 <programlisting role="php"><![CDATA[
21 $opts = new Zend_Console_Getopt('abp:');
26 上面的例子示例使用 <code>Zend_Console_Getopt</code> 来声明选项,这个选项也可以以 "<code>-a</code>"、"<code>-b</code>" 或 "<code>-p</code>"的形式给出。后面的 flag 需要一个参数。
29 短语法限于单个字符的flag。别名,参数类型和帮助字符串不被短语法支持。
33 <sect2 id="zend.console.getopt.rules.long">
34 <title> 用长语法声明选项 </title>
36 带有更多功能的不同的语法也是可用的。这个语法允许为 flag 指定别名、选项参数的类型和用来描述用法的帮助字符串。在短语法中使用单字符串来声明选项,而在常语法中使用联合数组作为构造器的第一个参数。
39 联合数组的每个元素的键是一个字符串,这个字符串带有给flag命名的格式,用管道符号("<code>|</code>")来隔离每个别名。在这些别名后面,如果选项需要参数,则用等号("<code>=</code>")和紧跟一个字母来表示参数的<emphasis> 类型 </emphasis>:
44 "<code>=s</code>" 表示字符串参数
49 "<code>=w</code>" 表示一个字的参数(不包含空白的字符串)
54 "<code>=i</code>" 表示整数参数
59 如果参数是可选的,使用短横线 ("<code>-</code>")而不使用等号。
62 在联合数组中的每个元素的值是帮助字符串,用来描述如何使用程序。
64 <example id="zend.console.getopt.rules.long.example">
65 <title> 使用长语法 </title>
66 <programlisting role="php"><![CDATA[
67 $opts = new Zend_Console_Getopt(
69 'apple|a' => 'apple option, with no parameter',
70 'banana|b=i' => 'banana option, with required integer parameter',
71 'pear|p-s' => 'pear option, with optional string parameter'
78 在上面的声明例子中,有三个选项:"<code>--apple</code>" 和 "<code>-a</code>" 互为别名,不带参数;"<code>--banana</code>" and "<code>-b</code>" 互为别名,带有强制的整形参数;最后,"<code>--pear</code>" and "<code>-p</code>" 互为别名,带有可选的字符串参数。