diff options
author | Dmitry Stogov <dmitry@php.net> | 2004-01-15 13:20:58 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2004-01-15 13:20:58 +0000 |
commit | 7c01c773b0bb78ed37b9f76175261de0832dc15d (patch) | |
tree | 3eca2036001e5d17eac7b88cad2f3483c3c83881 /ext/soap/php_encoding.h | |
parent | ef9e73459376b23a268ffaa7f71877cac5851c45 (diff) | |
download | php-git-7c01c773b0bb78ed37b9f76175261de0832dc15d.tar.gz |
Support for SOAP 1.2 array encoding/decoding was implemented
Diffstat (limited to 'ext/soap/php_encoding.h')
-rw-r--r-- | ext/soap/php_encoding.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/ext/soap/php_encoding.h b/ext/soap/php_encoding.h index 061cd847d5..90cfd16fea 100644 --- a/ext/soap/php_encoding.h +++ b/ext/soap/php_encoding.h @@ -198,15 +198,10 @@ 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); -void set_ns_and_type_ex(xmlNodePtr node, char *ns, char *type); encodePtr get_conversion_ex(HashTable *encoding, int encode); encodePtr get_conversion_from_type_ex(HashTable *encoding, xmlNodePtr node, const char *type); encodePtr get_conversion_from_href_type_ex(HashTable *encoding, const char *type, int len); -int is_map(zval *array); -void get_array_type(zval *array, smart_str *out_type TSRMLS_DC); - void delete_encoder(void *handle); extern encode defaultEncoding[]; |