diff options
author | Dmitry Stogov <dmitry@php.net> | 2004-01-20 16:30:38 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2004-01-20 16:30:38 +0000 |
commit | 67886b8321044d9ee04a4003206b9538bcc79219 (patch) | |
tree | 4222ddf609c857211c021550dca298a88445a94c /ext/soap/php_encoding.h | |
parent | a4815f7c8e9e7a5f5ccd9850402afc434f1d4353 (diff) | |
download | php-git-67886b8321044d9ee04a4003206b9538bcc79219.tar.gz |
XML Schema support
- support for <element> 'ref' attibute was implemented
- support for inline types
- support for <list> and <union> (incompleate)
Diffstat (limited to 'ext/soap/php_encoding.h')
-rw-r--r-- | ext/soap/php_encoding.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/soap/php_encoding.h b/ext/soap/php_encoding.h index 85b9989893..7b30f0a1fb 100644 --- a/ext/soap/php_encoding.h +++ b/ext/soap/php_encoding.h @@ -198,6 +198,7 @@ xmlNodePtr guess_xml_convert(encodeType type, zval *data, int style); void encode_reset_ns(); smart_str *encode_new_ns(); +void set_ns_and_type(xmlNodePtr node, encodeType type); encodePtr get_conversion_ex(HashTable *encoding, int encode); encodePtr get_conversion_from_type_ex(HashTable *encoding, xmlNodePtr node, const char *type); |