Это мой код, он будет отображаться "Не работает"
$f = file_get_contents("http://www.google.com");
$text = htmlspecialchars( $f );
$matches = array();
preg_match('@<a.*?</a>@s', $text, $matches);
if ($matches) {
$text2 = $matches[0];
echo $text2;
}
else {
echo "Not working";
}
Если я сделал переменную:
$text = '<a href="http://www.google.com">Google</a> is your best friend!';
Это будет работать как-то, но не будет, когда я возьму его из:
$text = htmlspecialchars( $f );
Кто-нибудь знает почему?