getRequestType() 공개 메소드

public getRequestType ( ) : string
리턴 string request type, can be GET, POST, HEAD, or PUT
예제 #1
0
 public function testGetRequestType()
 {
     $request = new THttpRequest();
     self::assertEquals('GET', $request->getRequestType());
 }