トップ
料金表
自己紹介
ブログ
お問い合わせ
preg_match_allのパターンをテストするページ
$str =
$pattern =
if(preg_match_all($pattern, $str, $matches)) {
	echo "true";
} else {
	echo "false";
}
> print_r($matches);