コードはありますが、次のエラーが発生する理由がわかりません。
Warning: preg_match(): Unknown modifier '<'
これがスニペットです
$pattern = "/<tr.*?data-eventid=\"(\d+)\"/" . // id
"<td.*?>\s{0,}.*\s(.*?)<div.*/?>\s(.*?)<\/td>\s{0,}" . // Day and Date
"<td.*?>(.*?)<\/td>\s{0,}" . // Time
"<td.*?>(.*?)<\/td>\s{0,}" . // Currency
"<td.*?>\s{0,}<div.*?>(.*?)<\/div>\s{0,}<\/td>\s{0,}" . // Impact
"<td.*?>\s{0,}<div.*?>(.*?)<\/div>\s{0,}<\/td>\s{0,}" . // Indicator
"<td.*?>\s{0,}<div.*?>(.*?)<\/div>\s{0,}<\/td>\s{0,}" . // Detail
"<td.*?>\s{0,}(.*?)\s{0,}<\/td>\s{0,}" . // Actual
"<td.*?>(.*?)<\/td>\s{0,}" . // Forecast
"<td.*?>(.*?)<\/td>\s{0,}". // Previous
"<td.*?>\s{0,}<div.*?>(.*?)<\/div>\s{0,}<\/td>\s{0,}/ims"; // Chart 忽略
私はその<記号をどこで探すべきかとても混乱しています..
よろしくお願いします