Der Fehler ist: SoapFault-Ausnahme: [WSDL] SOAP-FEHLER: Parsing WSDL: Konnte nicht geladen werden von „https://xxxxx/api?wsdl“: Externes Laden fehlgeschlagen Entität „https://xxxxxxx/api?wsdl“ in D:wwwcompare.php:22 Stacktrace: #0 D:wwwcompare.php(22): SoapClient->SoapClient('https://xxx...', Array) #1 {main}
Der Code lautet wie folgt:
$opts =array('http' => array('user_agent' => 'PHPSoapClient'),'ssl'=>array('verify_peer'=>false ,'verify_host'=>false,"verify_peer_name"=>false));
$url=" https://xxxxxxx/api?wsdl";
$params= array('encoding' => 'UTF-8','soap_version'=>SOAP_1_1,'trace' => 1, "Exceptions" = > 1 , "connection_timeout" => 180,'username' =>
$client =new SoapClient($url,$params);Außerdem gibt es kein Problem mit der php.ini-Konfiguration, OpenSSL und Soap wurden geöffnet Könnten Sie mir bitte sagen, wie ich das Problem lösen kann? ? ? ?
系统环境为windows2012+apche2.4+PHP7.2