from = $from; $this->to = $to; $this->index = $index; } /** * @param array $matches * @return mixed */ public function replace( array $matches ) { return str_replace( $this->from, $this->to, $matches[$this->index] ); } }