正規表現
戻りリスト
if(isset($date)){
if ( ereg( "([0-9]{1,2})/([ 0 -9]{1,2})/([0-9]{4})", $date, $regs ) ) {
echo $regs[0] . "変換結果は次のとおりです: " . $regs[ 3 ] . "-" . $regs[2];
} else {
echo "$date の日付形式が間違っています!
";}}?>
http://www.bkjia.com/PHPjc/531918.html
www.bkjia.com本当http://www.bkjia.com/PHPjc/531918.html技術記事正規表現はリストを返します if(isset($date)){ if ( ereg( "([0-9]{1,2})/([0-9]{1,2})/([0-9 ] {4})", $date, $regs ) ) { echo $regs[0] . " の変換結果は、 " . $regs[3] . "-" . $reg...