mirror of
https://github.com/php/php-src.git
synced 2024-11-26 03:16:33 +08:00
17 lines
337 B
PHP
17 lines
337 B
PHP
<html><body>
|
|
<?
|
|
error_reporting(2039);
|
|
include("SOAP/Client.php");
|
|
|
|
$txt = "Bjoern";
|
|
|
|
$soapc = new SOAP_Client("http://localhost/soap_interop/testserver.php");
|
|
$soapc->debug_flag = TRUE;
|
|
print_r($soapc->call("testMethod",array("txt" => $txt)));
|
|
print "<br>Debug: ";
|
|
print $soapc->wire;
|
|
print "<br><br>";
|
|
unset($soapc);
|
|
|
|
?>
|
|
</html></body>
|