Hello,

I have a lot legacy code that doesn't work with 5.3's getopt.

PHP 5.2.14 (cli) (built: Sep 24 2010 12:50:53)

$ php test.php Module.Controller.Action -p foobar
array(1) {
  ["p"]=>
  string(6) "foobar"
}

PHP 5.3.6 (cli) (built: Aug  8 2011 11:02:31):

$ php test.php Module.Controller.Action -p foobar
array(0) {
}

test.php:
var_dump(getopt("p:"));

Is this by-design?

Thanks,
Martin


-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to