AppserverIo\Appserver\ServletEngine\Http\Request::getParam PHP 메소드

getParam() 공개 메소드

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