关于zend soap
使用zend_soap_autodiscover自动生成的wsdl在windows下正常,同样的代码换到linux环境中就不行了,
xml codexmlns:xsd=http://www.w3.org/2001/xmlschema xmlns:soap-enc=http://schemas.xmlsoap.org/soap/encoding/ xmlns:wsdl=http://schemas.xmlsoap.org/wsdl/ name=bss_mailservice targetnamespace=http://split.bss.com/interface/index/mailservice>authsend
基中
这几个参数都应该是string类型,但在linux下生成的是anytype,另外我在方法的注释中己经写了返回值的注释,但也不管用
php code /** * * 发送邮件 * @param string $to * @param string $cc * @param string $bcc * @param string $subject * @param string $body * @return array * @throws soapfault */ public function send($to, $cc, $bcc, $subject, $body) {
请问这是怎么回事啊?