getEnableCookieValidation() 공개 메소드

public getEnableCookieValidation ( ) : boolean
리턴 boolean whether cookies should be validated. Defaults to false.
예제 #1
0
 public function testSetEnableCookieValidation()
 {
     $request = new THttpRequest();
     $request->init(null);
     $request->setEnableCookieValidation(true);
     self::assertEquals(true, $request->getEnableCookieValidation());
 }