수색…


통사론

  • addFunction () // 하나 또는 그 이상의 함수를 SOAP 요청 핸들러에 등록합니다.
  • addSoapHeader () // 응답에 SOAP 헤더를 추가합니다.
  • fault () // 오류를 나타내는 SoapServer 오류를 발행합니다.
  • getFunctions () // 함수 목록을 반환합니다.
  • handle () // SOAP 요청을 처리합니다.
  • setClass () // SOAP 요청을 처리하는 클래스를 설정합니다.
  • setObject () // SOAP 요청을 처리하는 데 사용될 객체를 설정합니다.
  • setPersistence () // SoapServer 지속성 모드를 설정합니다.

기본 SOAP 서버

function test($x)
{
    return $x;
}

$server = new SoapServer(null, array('uri' => "http://test-uri/"));
$server->addFunction("test");
$server->handle();


Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow