/**
  * @return PcreOptions
  */
 public function anchorAtStart()
 {
     $compiled = $this->compile();
     $options = new PcreOptions($compiled);
     $options->anchorAtStart();
     return $options;
 }
Ejemplo n.º 2
0
 /**
  * @return PcreOptions
  */
 public function anchorAtStart()
 {
     $options = new PcreOptions($this->regexString);
     $options->anchorAtStart();
     return $options;
 }