AppserverIo\Appserver\ServletEngine\Http\Request::getParam PHP Method

getParam() public method

Returns the parameter with the passed name if available or null if the parameter not exists.
public getParam ( string $name ) : string | null
$name string The name of the parameter to return
return string | null The requested value
    public function getParam($name)
    {
        return $this->getHttpRequest()->getParam($name);
    }