Solution:
$html = file_get_contents( “https://www.infowayindia.in” );
preg_match_all(‘/\bhttp\S*?.in\b/’, $html, $matches);
print_r($matches);
Solution:
$html = file_get_contents( “https://www.infowayindia.in” );
preg_match_all(‘/\bhttp\S*?.in\b/’, $html, $matches);
print_r($matches);