zend_parse_parameters 's!' for NULL string ok?

php.internals

Michael B Allen

19 years ago
The documentation claims: The following characters also have a meaning in the specifier string: ! - the parameter it follows can be of specified type or NULL (only applies to a, o, O, r, and z). If NULL value is passed by the user, the storage pointer will be set to NULL. Does the '!' character also work with strings (s)? It seems to work but I just want to make sure. Mike [1] http://www.zend.com/apidoc/zend.arguments.retrieval.php
-- Michael B Allen PHP Active Directory SSO http://www.ioplex.com/

Andrei Zmievski

19 years ago
Yes, it does work with 's'. I updated the README. -Andrei On Feb 4, 2007, at 8:24 PM, Michael B Allen wrote: