php-wsdl-creator Wiki
PhpWsdl I started to develop my own WSDL generator for PHP because th
Brought to you by:
odvpbre
A WSDL complex type.
Currently PhpWsdl supports complex types with sequenced elements of mixed types. PhpWsdl also supports simple arrays.
To create a complex type:
/** * The description * * @pw_element string $name An element with type "string" * @pw_element string $email Another element with type "string" * @pw_complex SampleComplex End the definition+ */
To create an array simply add "Array" to the type name:
/** * The description * * @pw_complex stringArray An array of string */ /** * The description * * @pw_complex arrayOfInt[] int An array of int */ /** * The description * * @pw_complex SampleComplexArray An array of SampleComplex */
View and moderate all "wiki Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Wiki"
Originally posted by: barbushin
I'm sorry, but it sucks... What is the problem to use standart PhpDoc? properties like @var? What is the problem to use PHP Reflection methods?
View and moderate all "wiki Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Wiki"
Originally posted by: Paizo.ga...@gmail.com
on github I found a project that extends this using reflection and document/literal instead of rpc/encoded. The problem with the reflection is loding classes with namespace definition.