PHP remove commas from numeric strings

前端 未结 7 1464
悲哀的现实
悲哀的现实 2020-11-30 12:21

In PHP, I have an array of variables that are ALL strings. Some of the values stored are numeric strings with commas.

What I need:

A way to trim the comma

7条回答
  •  半阙折子戏
    2020-11-30 12:40

    Not tested, but probably something like if(preg_match("/^[0-9,]+$/", $a)) $a = str_replace(...)

提交回复
热议问题