(.*?)<\/div>/is', $html, $matches) ) {
$html = $matches[1];
}
if ( preg_match( '/src=\"(.*?)\"/is', $html, $matches) ) {
return $matches[1];
} else {
return false;
}
}
// タグ内を抜く
function getPageExplain( $html ) {
if ( preg_match( '/(.*?)<\/explain>/is', $html, $matches) ) {
return $matches[1];
} else {
return false;
}
}
// ECサイトのURL (shopurl)を抜く
function getPageShopurl( $html ) {
if ( preg_match( '/(.*?)<\/shopurl>/is', $html, $matches) ) {
return $matches[1];
} else {
return false;
}
}
// 値段タグを抜く (price)
function getPagePrice( $html ) {
if ( preg_match( '/(.*?)<\/price>/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;
}
}
?>