Skip to content

Instantly share code, notes, and snippets.

@klemenzarn
Created March 23, 2013 18:56
Show Gist options
  • Save klemenzarn/5228978 to your computer and use it in GitHub Desktop.
Save klemenzarn/5228978 to your computer and use it in GitHub Desktop.
<?php
function Sestej($a, $b){
return $a+$b;
}
$server = new SoapServer(null,array('uri' => "urn://tyler/res"));
$server->addFunction('Sestej');
$server->handle();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment