示例#1
0
文件: GetoptTest.php 项目: travisj/zf
 public function testGetoptDumpString()
 {
     $opts = new Zend_Console_Getopt('abp:', array('-a', '-p', 'p_arg'));
     $this->assertEquals($opts->toString(), 'a=true p=p_arg');
 }