Php kullanarak içerik bir bağlantıyı nasıl kaldırılır?

0 Cevap php
$text = file_get_contents('http://www.example.com/file.php?id=name');
echo preg_replace('#<a.*?>.*?</a>#i', '', $text)

bağlantı Bu içeriği içerir:

text text text. <br><a href='http://www.example.com' target='_blank' title='title' style='text-decoration:none;'>name</a>

Bu script sorun ne?

0 Cevap