基本上,这需要做的只是接受一个价格值,它只能是 40 或 39.95 或 100.09 或 4 等,如果用户在字段中输入除数字以外的任何内容,则会返回错误。
我的问题:我该如何更改它,以便如果用户在输入字段中输入一个美元符号,它只是被剥离而不是在那种特定情况下返回错误?
if (ereg_replace('/^\d+(\.\d{2})?$/', $_POST['itemAmt'])) {
echo '<h1>The original cost of the item: $' . $_POST['itemAmt'] . ' </h1>';
} else {
echo '<h1 style="color:red; font-weight:900;">The price value was not numeric, try again :) </h1><br>';
}