Piwik\Tracker\Request::getRawParams PHP 메소드

getRawParams() 공개 메소드

Get the params that were originally passed to the instance. These params do not contain any params that were added within this object.
public getRawParams ( ) : array
리턴 array
    public function getRawParams()
    {
        return $this->rawParams;
    }

Usage Example

예제 #1
0
 public function trackRequest(Request $request)
 {
     $allParams = $request->getRawParams();
     if (!empty($allParams['forceThrow'])) {
         throw new ForcedException("forced exception");
     }
     return parent::trackRequest($request);
 }