Düzenli ifadeler ile PHP komut dosyası

0 Cevap php

Ben şu php komut dosyası kullanarak başlığı etiketi arasındaki metni almak için çalışıyorum:

$search_string= < h1 >testing here< /h1 >;

$text = preg_match('<%TAG%[^>]*>(.*?)</%TAG%>',$search_string, $matches);

echo $matches[0]; 

When i try to run this script there is no value being returned. Instead there is warning message: Warning: preg_match() [function.preg-match]: Unknown modifier '(' in C:\xampp\htdocs\check_for_files.php on line 10

Herkes bu lütfen yardımcı olabilir misiniz?

0 Cevap