Source code:
<?php
  error_reporting ( E_ALL & ~E_NOTICE ) ;
  //
  // initialize UDDS clacs
  //
  require_once('auth.php');
  require_once('classUddsAtlasClient.php');
  $uddsAtlasClient = new classUddsAtlasClient();
  $uddsAtlasClient->login = $YOUR_LOGIN ;
  $uddsAtlasClient->password = $YOUR_PASSWORD ;
  
  //
  // exaple function call
  //  
  $uddsAtlasClient->searchParams['ships'] = array(3);
  $result = $uddsAtlasClient->getShip(); // Zwróci szczegóły tylko pierwszego statku z listy $uddsAtlasClient->searchParams['ships']

  $src = htmlentities ( file_get_contents ( __FILE__ ) ) ; 
  echo "Source code:<pre style='background-color:#333333;color:dddddd;padding:10px;font-family:courier;font-size:11px;'>{$src}</pre>" ;
  echo "Result :<pre style='background-color:#003300;color:dddd33;padding:10px;font-family:courier;font-size:11px;'>" ;
  print_r ( $result ) ;
  echo "</pre>" ;

  
  
Result :
Array
(
    [shipId] => 3
    [category] => 50
    [name] => Mariner Of The Seas
    [urlToPlanShip] => 
    [shipowner] => Array
        (
            [shipownerId] => 15
            [name] => Royal Caribbean
        )

    [description] => Array
        (
        )

    [images] => Array
        (
            [0] => Array
                (
                    [url] => http://images.namorzu.pl/ship/Mariner%20of%20the%20Seas/gallery/00_mariner_of_the_seas.jpg
                    [name] => 00_mariner_of_the_seas.jpg
                    [title] => 
                    [alt] => 
                    [format] => jpg
                    [howToStore] => ftp
                )

            [1] => Array
                (
                    [url] => http://images.namorzu.pl/ship/Mariner%20of%20the%20Seas/gallery/01_mariner_of_the_seas.jpg
                    [name] => 01_mariner_of_the_seas.jpg
                    [title] => 
                    [alt] => 
                    [format] => jpg
                    [howToStore] => ftp
                )

            [2] => Array
                (
                    [url] => http://images.namorzu.pl/ship/Mariner%20of%20the%20Seas/gallery/02_mariner_of_the_seas.jpg
                    [name] => 02_mariner_of_the_seas.jpg
                    [title] => 
                    [alt] => 
                    [format] => jpg
                    [howToStore] => ftp
                )

            [3] => Array
                (
                    [url] => http://images.namorzu.pl/ship/Mariner%20of%20the%20Seas/gallery/03_mariner_of_the_seas.jpg
                    [name] => 03_mariner_of_the_seas.jpg
                    [title] => 
                    [alt] => 
                    [format] => jpg
                    [howToStore] => ftp
                )

            [4] => Array
                (
                    [url] => http://images.namorzu.pl/ship/Mariner%20of%20the%20Seas/gallery/04_mariner_of_the_seas.jpg
                    [name] => 04_mariner_of_the_seas.jpg
                    [title] => 
                    [alt] => 
                    [format] => jpg
                    [howToStore] => ftp
                )

            [5] => Array
                (
                    [url] => http://images.namorzu.pl/ship/Mariner%20of%20the%20Seas/gallery/05_mariner_of_the_seas.jpg
                    [name] => 05_mariner_of_the_seas.jpg
                    [title] => 
                    [alt] => 
                    [format] => jpg
                    [howToStore] => ftp
                )

            [6] => Array
                (
                    [url] => http://images.namorzu.pl/ship/Mariner%20of%20the%20Seas/gallery/06_mariner_of_the_seas.jpg
                    [name] => 06_mariner_of_the_seas.jpg
                    [title] => 
                    [alt] => 
                    [format] => jpg
                    [howToStore] => ftp
                )

        )

)