<?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 => 'tr',
  ),
  'this' => 
  array (
    0 => 'soapclient.call.php',
    1 => 'SoapClient::__call',
    2 => 'Calls a SOAP function (deprecated)',
  ),
  'up' => 
  array (
    0 => 'class.soapclient.php',
    1 => 'SoapClient',
  ),
  'prev' => 
  array (
    0 => 'class.soapclient.php',
    1 => 'SoapClient',
  ),
  'next' => 
  array (
    0 => 'soapclient.construct.php',
    1 => 'SoapClient::__construct',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/soap/soapclient/call.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="soapclient.call" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">SoapClient::__call</h1>
  <p class="verinfo">(PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">SoapClient::__call</span> &mdash; <span class="dc-title">Calls a SOAP function (deprecated)</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-soapclient.call-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>SoapClient::__call</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$name</code></span>, <span class="methodparam"><span class="type"><a href="language.types.array.php" class="type array">array</a></span> <code class="parameter">$args</code></span>): <span class="type"><a href="language.types.mixed.php" class="type mixed">mixed</a></span></div>

  <p class="para rdfs-comment">
   Calling this method directly is deprecated. Usually, SOAP functions can be
   called as methods of the <span class="classname"><a href="class.soapclient.php" class="classname">SoapClient</a></span> object; in
   situations where this is not possible or additional options are needed, use
   <span class="methodname"><a href="soapclient.soapcall.php" class="methodname">SoapClient::__soapCall()</a></span>.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-soapclient.call-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">name</code></dt>
     <dd>
      <p class="para">
       The name of the SOAP function to call.
      </p>
     </dd>
    
    
     <dt><code class="parameter">args</code></dt>
     <dd>
      <p class="para">
       An array of the arguments to pass to the function.
       This can be either an ordered or an associative array.
       Note that most SOAP servers require parameter names to be provided, in which case this must be an associative array.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-soapclient.call-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">
   SOAP functions may return one, or multiple values. If only one value is
   returned by the SOAP function, the return value will be a scalar.
   If multiple values are returned, an associative array of named output
   parameters is returned instead.
  </p>
  <p class="para">
   On error, if the <span class="classname"><a href="class.soapclient.php" class="classname">SoapClient</a></span> object was constructed
   with the <code class="literal">exceptions</code> option set to <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong>,
   a <span class="classname"><a href="class.soapfault.php" class="classname">SoapFault</a></span> object will be returned.
  </p>
 </div>


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