我想用PHP解析用戶輸入的字符串日期。我需要刪除比這兩個上可接受的類之外的所有字符:PHP:將_not_中的所有單詞替換爲數組
1) [0-9,\./-] (numerals, comma, period, slash, and dash)
2) An array of acceptable words:
$monthNames=array(
"january"=>1,
"jan"=>1,
"february"=>2,
"feb"=>2
);
我試圖爆炸()荷蘭國際集團上字符字bounaries,然後除去各部分不是在陣列中,但導致相當混亂。有沒有一個完美的方式來完成這個?
謝謝!
你應該表現出你的代碼,以便它更清楚你的目標是什麼。 – hakre
您是否使用內置in_array()函數的php? http://php.net/manual/en/function.in-array.php – ford
'strtotime()'http://php.net/manual/en/function.strtotime.php – Petah