Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将整数插入表单。要求用户输入格式为 12.2-9999 的促销编号。我只想将 9999 插入数据库的列中,但我在列中得到 -9999。我不确定我是否应该在这里使用 preg_replace 或其他东西?
只需使用explode(),就像这样:
explode()
list( , $promo) = explode( '-', '12.2-9999');
现在$promo将包含9999.
$promo
9999
以下正则表达式将检查最后一个-并捕获最后的数字(根据示例是9999):
-
/-(\d+)$/