<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.soapclient.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'soapclient.getfunctions.php',
    1 => 'SoapClient::__getFunctions',
    2 => 'Liefert eine Liste verf&uuml;gbarer SOAP-Funktionen',
  ),
  'up' => 
  array (
    0 => 'class.soapclient.php',
    1 => 'SoapClient',
  ),
  'prev' => 
  array (
    0 => 'soapclient.getcookies.php',
    1 => 'SoapClient::__getCookies',
  ),
  'next' => 
  array (
    0 => 'soapclient.getlastrequest.php',
    1 => 'SoapClient::__getLastRequest',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    'path' => 'reference/soap/soapclient/getfunctions.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="soapclient.getfunctions" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">SoapClient::__getFunctions</h1>
  <p class="verinfo">(PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">SoapClient::__getFunctions</span> &mdash; <span class="dc-title">Liefert eine Liste verfügbarer SOAP-Funktionen</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-soapclient.getfunctions-description">
  <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>SoapClient::__getFunctions</strong></span>(): <span class="type"><span class="type"><a href="language.types.null.php" class="type null">?</a></span><span class="type"><a href="language.types.array.php" class="type array">array</a></span></span></div>

  <p class="para rdfs-comment">
   Gibt ein Array der im WSDL beschriebenen Funktionen für den Web-Service
   zurück.
  </p>
  <blockquote class="note"><p><strong class="note">Hinweis</strong>: <p class="para">Diese Funktion funktioniert nur im WSDL-Modus.</p></p></blockquote>
 </div>


 <div class="refsect1 parameters" id="refsect1-soapclient.getfunctions-parameters">
  <h3 class="title">Parameter-Liste</h3>
  <p class="para">Diese Funktion besitzt keine Parameter.</p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-soapclient.getfunctions-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="para">
   Das <span class="type"><a href="language.types.array.php" class="link">Array</a></span> der SOAP-Funktionsprototypen mit detaillierter
   Angabe des Rückgabetyps, des Funktionsnamens und des Parametertyps.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-soapclient.getfunctions-examples">
  <h3 class="title">Beispiele</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Beispiel #1 <span class="function"><strong>SoapClient::__getFunctions()</strong></span>-Beispiel</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$client </span><span style="color: #007700">= new </span><span style="color: #0000BB">SoapClient</span><span style="color: #007700">(</span><span style="color: #DD0000">'http://soap.amazon.com/schemas3/AmazonWebServices.wsdl'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$client</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">__getFunctions</span><span style="color: #007700">());<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>Das oben gezeigte Beispiel erzeugt folgende Ausgabe:</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">array(26) {
  [0]=&gt;
  string(70) &quot;ProductInfo KeywordSearchRequest(KeywordRequest $KeywordSearchRequest)&quot;
  [1]=&gt;
  string(79) &quot;ProductInfo TextStreamSearchRequest(TextStreamRequest $TextStreamSearchRequest)&quot;
  [2]=&gt;
  string(64) &quot;ProductInfo PowerSearchRequest(PowerRequest $PowerSearchRequest)&quot;
...
  [23]=&gt;
  string(107) &quot;ShoppingCart RemoveShoppingCartItemsRequest(RemoveShoppingCartItemsRequest $RemoveShoppingCartItemsRequest)&quot;
  [24]=&gt;
  string(107) &quot;ShoppingCart ModifyShoppingCartItemsRequest(ModifyShoppingCartItemsRequest $ModifyShoppingCartItemsRequest)&quot;
  [25]=&gt;
  string(118) &quot;GetTransactionDetailsResponse GetTransactionDetailsRequest(GetTransactionDetailsRequest $GetTransactionDetailsRequest)&quot;
}</pre>
</div>
    </div>
   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-soapclient.getfunctions-seealso">
  <h3 class="title">Siehe auch</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="methodname"><a href="soapclient.construct.php" class="methodname" rel="rdfs-seeAlso">SoapClient::__construct()</a> - SoapClient-Konstruktor</span></li>
   </ul>
  </p>
 </div>


</div><?php manual_footer($setup); ?>