mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-19 10:28:54 +00:00

# not documenting soap_encode_to_xx() and SoapServer->map() as the soap maintainer think about removing these functions git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@176815 c90b9560-bf6c-de11-be94-00142212c4b1
82 lines
2.1 KiB
XML
82 lines
2.1 KiB
XML
<?xml version='1.0' encoding='iso-8859-1'?>
|
|
<!-- $Revision: 1.2 $ -->
|
|
<refentry id="function.soap-soapclient-getlastrequest">
|
|
<refnamediv>
|
|
<refname>SoapClient->__getLastRequest()</refname>
|
|
<refpurpose>
|
|
Returns last SOAP request
|
|
</refpurpose>
|
|
</refnamediv>
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<classsynopsis>
|
|
<ooclass><classname>SoapClient</classname></ooclass>
|
|
<methodsynopsis>
|
|
<type>string</type>
|
|
<methodname>__getLastRequest</methodname>
|
|
<void />
|
|
</methodsynopsis>
|
|
</classsynopsis>
|
|
<note>
|
|
<para>
|
|
This method works only if the <classname>SoapClient</classname> object
|
|
was created with the <literal>trace</literal> option.
|
|
</para>
|
|
</note>
|
|
</refsect1>
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
The last SOAP request.
|
|
</para>
|
|
</refsect1>
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title>SoapClient->__getLastRequest() example</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$client = SoapClient("some.wsdl", array('trace' => 1));
|
|
$result = $client->SomeFunction();
|
|
echo "REQUEST:\n" . $client->__getLastRequest() . "\n";
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><xref linkend="function.soap-soapclient-construct" /></member>
|
|
<member><xref linkend="function.soap-soapclient-getlastrequestheaders" /></member>
|
|
<member><xref linkend="function.soap-soapclient-getlastresponse" /></member>
|
|
<member><xref linkend="function.soap-soapclient-getlastresponseheaders" /></member>
|
|
</simplelist>
|
|
</para>
|
|
</refsect1>
|
|
</refentry>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"../../../../manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|