<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php
/**
 * This file aims to show you how to use this generated package.
 * In addition, the goal is to show which methods are available and the fist needed parameter(s)
 * You have to use an associative array such as:
 * - the key must be a constant beginning with WSDL_ from AbstractSoapClientbase class each generated ServiceType class extends this class
 * - the value must be the corresponding key value (each option matches a {@link http://www.php.net/manual/en/soapclient.soapclient.php} option)
 * $options = array(
 * \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_URL =&gt; 'http://www.dalida.com.tr/Servis/UyeServis.svc?wsdl',
 * \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_TRACE =&gt; true,
 * \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_LOGIN =&gt; 'you_secret_login',
 * \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_PASSWORD =&gt; 'you_secret_password',
 * );
 * etc....
 */
require_once __DIR__ . '/vendor/autoload.php';
/**
 * Minimal options
 */
$options = array(
    \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_URL =&gt; 'http://www.dalida.com.tr/Servis/UyeServis.svc?wsdl',
    \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_CLASSMAP =&gt; ClassMap::get(),
);
/**
 * Samples for Giris ServiceType
 */
$giris = new \ServiceType\Giris($options);
/**
 * Sample call for GirisYap operation/method
 */
if ($giris-&gt;GirisYap(new \StructType\GirisYap()) !== false) {
    print_r($giris-&gt;getResult());
} else {
    print_r($giris-&gt;getLastError());
}
/**
 * Samples for Select ServiceType
 */
$select = new \ServiceType\Select($options);
/**
 * Sample call for SelectUyeler operation/method
 */
if ($select-&gt;SelectUyeler(new \StructType\SelectUyeler()) !== false) {
    print_r($select-&gt;getResult());
} else {
    print_r($select-&gt;getLastError());
}
/**
 * Sample call for SelectUyeAdres operation/method
 */
if ($select-&gt;SelectUyeAdres(new \StructType\SelectUyeAdres()) !== false) {
    print_r($select-&gt;getResult());
} else {
    print_r($select-&gt;getLastError());
}
/**
 * Sample call for SelectUyeTuru operation/method
 */
if ($select-&gt;SelectUyeTuru(new \StructType\SelectUyeTuru()) !== false) {
    print_r($select-&gt;getResult());
} else {
    print_r($select-&gt;getLastError());
}
/**
 * Samples for Save ServiceType
 */
$save = new \ServiceType\Save($options);
/**
 * Sample call for SaveUye operation/method
 */
if ($save-&gt;SaveUye(new \StructType\SaveUye()) !== false) {
    print_r($save-&gt;getResult());
} else {
    print_r($save-&gt;getLastError());
}
/**
 * Sample call for SaveUyeAdres operation/method
 */
if ($save-&gt;SaveUyeAdres(new \StructType\SaveUyeAdres()) !== false) {
    print_r($save-&gt;getResult());
} else {
    print_r($save-&gt;getLastError());
}
/**
 * Sample call for SaveUyeTuru operation/method
 */
if ($save-&gt;SaveUyeTuru(new \StructType\SaveUyeTuru()) !== false) {
    print_r($save-&gt;getResult());
} else {
    print_r($save-&gt;getLastError());
}
</pre></body></html>