typos by Dmitry

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@152532 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Mehdi Achour 2004-02-27 12:27:53 +00:00
parent 6671ae210c
commit b6705494b8
3 changed files with 7 additions and 7 deletions

View file

@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
<!-- $Revision: 1.1 $ -->
<!-- $Revision: 1.2 $ -->
<refentry id="function.SoapServer-SoapServer">
<refnamediv>
<refname>SoapServer::SoapServer</refname>
@ -18,7 +18,7 @@
This constuctor allows creating SoapServer objects in WSDL or nonWSDL mode.
In the first case <parameter>wsdl</parameter> must be set to URI of WSDL file.
In the second case, <parameter>wsdl</parameter> must be set to &null; and
<literal>uti</literal> option must be set.
<literal>uri</literal> option must be set.
Additional <parameter>options</parameter> allow setting a default SOAP version
(<literal>soap_version</literal>) and actor URI (<literal>actor</literal>).
</para>

View file

@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
<!-- $Revision: 1.1 $ -->
<!-- $Revision: 1.2 $ -->
<refentry id="function.SoapServer-addFunction">
<refnamediv>
<refname>SoapServer::addFunction</refname>
@ -35,10 +35,11 @@
<![CDATA[
<?php
function func($inputString)
function echoString($inputString)
{
return $inputString;
}
$server->addFunction("echoString");
function echoTwoStrings($inputString1, $inputString2)

View file

@ -1,10 +1,10 @@
<?xml version='1.0' encoding='iso-8859-1'?>
<!-- $Revision: 1.1 $ -->
<!-- $Revision: 1.2 $ -->
<refentry id="function.is-soap-fault">
<refnamediv>
<refname>is_soap_fault</refname>
<refpurpose>
checks if SOAP call was failed
Checks if SOAP call was failed
</refpurpose>
</refnamediv>
<refsect1>
@ -34,7 +34,6 @@
<programlisting role="php">
<![CDATA[
<?php
$client = SoapClient("some.wsdl", array('exceptions' => 0));
$result = $client->SomeFunction(...);
if (is_soap_fault($result)) {