(.*?)<\/div>/is', $html, $matches) ) {
$html = $matches[1];
}
if ( preg_match( '/src=\"(.*?)\"/is', $html, $matches) ) {
return $matches[1];
} else {
return false;
}
}
// 特殊タグを抜く Amazon
function getPageAmazon( $html ) {
if ( preg_match( '/(.*?)<\/amazon>/is', $html, $matches) ) {
return $matches[1];
} else {
return false;
}
}
// 特殊タグを抜く FacebookURL
function getPageFacebook( $html ) {
if ( preg_match( '/(.*?)<\/facebook>/is', $html, $matches) ) {
return $matches[1];
} else {
return false;
}
}
// 特殊タグを抜く TwitterURL
function getPageTwitter( $html ) {
if ( preg_match( '/(.*?)<\/twitter>/is', $html, $matches) ) {
return $matches[1];
} else {
return false;
}
}
// 特殊タグを抜く YoutubeURL
function getPageYoutube( $html ) {
if ( preg_match( '/(.*?)<\/youtube>/is', $html, $matches) ) {
return $matches[1];
} else {
return false;
}
}
// 特殊タグを抜く 外部サイト(exweb)URL
function getPageExweb( $html ) {
if ( preg_match( '/(.*?)<\/exweb>/is', $html, $matches) ) {
return $matches[1];
} else {
return false;
}
}
?>