bitlabo123.com/PHP/Snippet/ページから title タグの内容を抜き取る
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&target_blank(https://bitlabo123.com/snippets/get_page_ti...
function getPageTitle($url)
{
$matches = NULL;
$html = file_get_contents($url);
$html = mb_convert_encoding($html, 'utf8', 'auto');
if (preg_match( "/<title>(.*?)<\/title>/i", $html, $...
return $matches[1];
} else {
return FALSE;
}
}
RIGHT:Today : &counter(today); / Yesterday : &counter(yes...
終了行:
&target_blank(https://bitlabo123.com/snippets/get_page_ti...
function getPageTitle($url)
{
$matches = NULL;
$html = file_get_contents($url);
$html = mb_convert_encoding($html, 'utf8', 'auto');
if (preg_match( "/<title>(.*?)<\/title>/i", $html, $...
return $matches[1];
} else {
return FALSE;
}
}
RIGHT:Today : &counter(today); / Yesterday : &counter(yes...
ページ名: