header('Content-type: text/html; charset=utf-8');
require 'phpQuery/phpQuery.php';
function print_arr($arr) {
echo '<pre>' . print_r($arr, true) . '</pre>';
}
$url = 'https://www.beyoung.in/dur-se-hi-namastey-t-shirt-for-men';
$file = file_get_contents($url);
$doc = phpQuery::newDocument($file);
$img = $doc->find('.fotorama__stage__frame img')->attr('src');
echo $img;