AppserverIo\Appserver\ServletEngine\Http\Request::getParam PHP Méthode

getParam() public méthode

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
Résultat string | null The requested value
    public function getParam($name)
    {
        return $this->getHttpRequest()->getParam($name);
    }