Beispiel #1
0
 public function setUrl($url)
 {
     if (!preg_match('/^https?:\\/\\//', $url)) {
         $url = 'http://' . $url;
     }
     if (!Utils::urlRegex($url)) {
         // throw new \Exception('Invalid URL');
     }
     $this->_url = $url;
 }