Symfony\Component\DomCrawler\Form::offsetGet PHP 메소드

offsetGet() 공개 메소드

Gets the value of a field.
public offsetGet ( string $name ) : FormField
$name string The field name
리턴 Symfony\Component\DomCrawler\Field\FormField The associated Field instance
    public function offsetGet($name)
    {
        return $this->fields->get($name);
    }