_debug; } final public function setDebug(bool $debug): void { $this->_debug = $debug; } //url에 http 나 https가 포함되어 있으면 true final public function isContainsHttpOrHttps($url): bool { return strpos($url, 'http://') !== false || strpos($url, 'https://') !== false; } }