Skip to content

Commit 4cc9539

Browse files
[PHP8.4] getLastResponseの翻訳 (#175)
* getLastResponseの翻訳 * `Maintainer` に `CREDITS` 同様に翻訳者を明記 * 文体とフォーマットを他のドキュメントと統一 --------- Co-authored-by: 武田 憲太郎 <[email protected]>
1 parent 4fd70d6 commit 4cc9539

File tree

1 file changed

+77
-0
lines changed

1 file changed

+77
-0
lines changed
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!-- $Revision$ -->
3+
<!-- EN-Revision: 7e1f81cbbe7613ce7bbe65cc93c45fae38e0942b Maintainer: ippey Status: ready -->
4+
<!-- CREDITS: ippey -->
5+
6+
<refentry xml:id="soapserver.getlastresponse" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
7+
<refnamediv>
8+
<refname>SoapServer::__getLastResponse</refname>
9+
<refpurpose>最新のSOAPレスポンスを返す</refpurpose>
10+
</refnamediv>
11+
12+
<refsect1 role="description">
13+
&reftitle.description;
14+
<methodsynopsis role="SoapServer">
15+
<modifier>public</modifier> <type class="union"><type>string</type><type>null</type></type><methodname>SoapServer::__getLastResponse</methodname>
16+
<void/>
17+
</methodsynopsis>
18+
<simpara>
19+
最新のSOAPレスポンスで送信されたXMLを返します。
20+
</simpara>
21+
<note>
22+
<simpara>
23+
このメソッドは <classname>SoapServer</classname> オブジェクトが <literal>trace</literal> オプションに &true; を設定して
24+
作成された場合にのみ動作します。
25+
</simpara>
26+
</note>
27+
</refsect1>
28+
29+
<refsect1 role="parameters">
30+
&reftitle.parameters;
31+
&no.function.parameters;
32+
</refsect1>
33+
34+
<refsect1 role="returnvalues">
35+
&reftitle.returnvalues;
36+
<simpara>
37+
最新のSOAPレスポンス (XML文字列形式)
38+
</simpara>
39+
</refsect1>
40+
41+
<refsect1 role="examples">
42+
&reftitle.examples;
43+
<example>
44+
<title>SoapServer::__getLastResponse() example</title>
45+
<programlisting role="php">
46+
<![CDATA[
47+
<?php
48+
$server = SoapServer("some.wsdl", ["trace" => 1]);
49+
$server->handle();
50+
echo "Response:\n" . $server->__getLastResponse() . "\n";
51+
?>
52+
]]>
53+
</programlisting>
54+
</example>
55+
</refsect1>
56+
57+
</refentry>
58+
<!-- Keep this comment at the end of the file
59+
Local variables:
60+
mode: sgml
61+
sgml-omittag:t
62+
sgml-shorttag:t
63+
sgml-minimize-attributes:nil
64+
sgml-always-quote-attributes:t
65+
sgml-indent-step:1
66+
sgml-indent-data:t
67+
indent-tabs-mode:nil
68+
sgml-parent-document:nil
69+
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
70+
sgml-exposed-tags:nil
71+
sgml-local-catalogs:nil
72+
sgml-local-ecat-files:nil
73+
End:
74+
vim600: syn=xml fen fdm=syntax fdl=2 si
75+
vim: et tw=78 syn=sgml
76+
vi: ts=1 sw=1
77+
-->

0 commit comments

Comments
 (0)