PHP 8.5.0 Beta 2 available for testing

Voting

: min(one, three)?
(Example: nine)

The Note You're Voting On

acopantepuy at gmail dot com
10 years ago
when they want to pass variables into the http header that is how it is done:

<?php

$aHTTP
['http']['header'] = "User-Agent: PHP-SOAP/5.5.11\r\n";

$aHTTP['http']['header'].= "username: XXXXXXXXXXX\r\n"."password: XXXXX\r\n";

$context = stream_context_create($aHTTP);

$client=new SoapClient("https://ocppws-cert.extra.bcv.org.ve:443/AltoValor/BancoUniversal?WSDL",array('trace' => 1,"stream_context" => $context));

$result = $client->jornadaActiva();
var_dump($result);
?>

<< Back to user notes page

To Top