[PHP] 도메인주소 매칭 확인
if (preg_match("#testdomain\.com$#", $url_data) == false) {
// error_log(print_r($url_data, 1));
return false;
}