The error is: SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from 'https://xxxxx/api?wsdl' : failed to load external entity "https://xxxxxxx/api?wsdl" in D:\www\compare.php:22 Stack trace: #0 D:\www\compare.php(22): SoapClient->SoapClient('https://xxx...', Array) #1 {main}
The code is as follows:
$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' => 'xx', 'password' => '**** *','stream_context' => stream_context_create($opts));
$client =new SoapClient($url,$params);
In addition, there is no problem with the php.ini configuration, openssl and soap has been opened
Could you please tell me how to solve it? ? ? ?