mng.easy-cars.com.ua Open in urlscan Pro
195.16.88.9  Public Scan

Submitted URL: http://www.mng.easy-cars.com.ua/
Effective URL: https://mng.easy-cars.com.ua/
Submission: On February 19 via api from US — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

(int)$status, 'msg' => $msg )); } } /* * * Запрос курл покупки карфакса * */ if
( ! function_exists('get_5vin_curl')) { function get_5vin_curl( $ch, $url,
$is_post = 0, $post_fields = array() ) { $config = [ CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => 1, CURLOPT_USERAGENT => 'Mozilla/5.0 (Windows NT 10.0;
Win64; x64)', CURLOPT_COOKIEJAR => 'cookie.txt', CURLOPT_COOKIEFILE =>
'cookie.txt' ]; if( $is_post ){ $config[ CURLOPT_POST ] = 1; $config[
CURLOPT_POSTFIELDS ] = http_build_query( $post_fields ); }
curl_setopt_array($ch, $config ); $exec = curl_exec($ch); curl_reset($ch);
sleep(0.2); # print_r( $exec ); return $exec; } } /** * Check if a string is a
valid date(time) * * DateTime::createFromFormat requires PHP >= 5.3 * * @param
string $str_dt * @param string $str_dateformat * @param string $str_timezone (If
timezone is invalid, php will throw an exception) * @return bool */ function
isValidDateTimeString($str_dt, $str_dateformat, $str_timezone = '-2') { $date =
DateTime::createFromFormat($str_dateformat, $str_dt, new
DateTimeZone($str_timezone)); return $date &&
DateTime::getLastErrors()["warning_count"] == 0 &&
DateTime::getLastErrors()["error_count"] == 0; }