السلام عليكم،
أنا أبحث عن كود PHP يجلب إسم صفحة أو موقع html
*علماً بأن إصدار الـ php على السيرفر هو 5.2
وهذا الكود كان يعمل لدي لكن عندما بدلت السيرفر توقف عن العمل الرجاء التأكد منه:
<?php
//replace this with the url of your page
$html = file_get_contents('
http://forums.digitalpoint.com/index.php');
if(preg_match('/<title>(.*)<\/title>/smU', $html, $matches)) {
$title = $matches[1];
echo"title:" .$title;
} else {
echo("Tite tag could'nt be found");
} ?>