<?php
$str = "#F0f0E0";
if (preg_match("/^#[a-fA-F0-9]{6}$",$str)) {
echo "HTMLカラーです";
} else {
echo "HTMLカラーじゃないです";
}
?>
[HTMLカラーです]が出力されます。
関数版
<?php
function is_htmlcolor($text)
{
if (preg_match("/^#[a-fA-F0-9]{6}$",$text)) {
return TRUE;
} else {
return FALSE;
}
}
?>
スポンサードリンク
PHP&正規表現