예제 #1
0
 public function clientAction()
 {
     $client = new Zend_Soap_Client($this->_WSDL_URI);
     $this->view->add_result = $client->math_add(11, 55);
     $this->view->logical_not_result = $client->logical_not(true);
     $this->view->sort_result = $client->simple_sort(array("d" => "lemon", "a" => "orange", "b" => "banana", "c" => "apple"));
 }