11 Kasım 2014, 05:00
|
#1 |
Çevrimdışı
Kullanıcıların profil bilgileri misafirlere kapatılmıştır.
| preg_match ile sayfanın meta keywords öğrenmek
PHP Kod: Kodu kopyalamak için üzerine çift tıklayın!
function get_keywords($file){
$h1tags = preg_match('/(<meta name="keywords" content="(.*)" \/>)/i',$file,$patterns);
$res = array();
array_push($res,$patterns[2]);
array_push($res,count($patterns[2]));
return $res;
}
__________________ |
| |